From 2efc01331678afa31377ec67a7b6ed3bede456f6 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Thu, 17 May 2012 10:12:10 -0400 Subject: [PATCH] Ignore long lines in pep8 --- rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rakefile b/rakefile index 6fced22658..4644f30680 100644 --- a/rakefile +++ b/rakefile @@ -34,7 +34,7 @@ task :default => [:pep8, :pylint, :test] directory REPORT_DIR task :pep8 => REPORT_DIR do - sh("pep8 djangoapps | tee #{REPORT_DIR}/pep8.report") + sh("pep8 --ignore=E501 djangoapps | tee #{REPORT_DIR}/pep8.report") end task :pylint => REPORT_DIR do