summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com>2014-08-28 14:35:08 -0700
committerMichael Vogt <mvo@debian.org>2014-08-28 14:35:08 -0700
commit260597a6f29415ccacb5583381f9ba5bcb463e6f (patch)
tree15159afef9fc01d2b82ceb3b2484ed85891aad70
parent2884948fb3cb9ad0c660380ec07412086e164f31 (diff)
downloadpython-apt-260597a6f29415ccacb5583381f9ba5bcb463e6f.tar.gz
tests/test_pep8.py: --ignore E129 too (fix FTBFS with pep8 >= 1.5)
-rwxr-xr-xtests/test_pep8.py4
1 files changed, 3 insertions, 1 deletions
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: