Config changes to make pep8 autofixes easier

This commit is contained in:
Calen Pennington
2013-02-05 07:39:53 -05:00
parent e89948a5c6
commit 0b650122fb
2 changed files with 3 additions and 1 deletions

2
.pep8 Normal file
View File

@@ -0,0 +1,2 @@
[pep8]
ignore=E501

View File

@@ -134,7 +134,7 @@ end
desc "Run pep8 on all #{system} code"
task "pep8_#{system}" => report_dir do
sh("pep8 --ignore=E501 #{system}/djangoapps #{system}/lib | tee #{report_dir}/pep8.report")
sh("pep8 #{system} | tee #{report_dir}/pep8.report")
end
task :pep8 => "pep8_#{system}"