From 260597a6f29415ccacb5583381f9ba5bcb463e6f Mon Sep 17 00:00:00 2001 From: Mauricio Faria de Oliveira Date: Thu, 28 Aug 2014 14:35:08 -0700 Subject: tests/test_pep8.py: --ignore E129 too (fix FTBFS with pep8 >= 1.5) --- tests/test_pep8.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_pep8.py b/tests/test_pep8.py index b3ec2dba..eee7c7a6 100755 --- a/tests/test_pep8.py +++ b/tests/test_pep8.py @@ -16,8 +16,10 @@ class PackagePep8TestCase(unittest.TestCase): # E126 continuation line over-indented for hanging indent # E127 continuation line over-indented for visual indent # E128 continuation line under-indented for visual indent + # E129 continuation line does not distinguish itself from + # next logical line # E265 block comment should start with '# ' - "--ignore=E125,E126,E127,E128,E265", + "--ignore=E125,E126,E127,E128,E129,E265", "--exclude", "build,tests/old", "--repeat", py_dir]) if res != 0: -- cgit v1.2.3