From 38c851e58e09c5574661ef4b2d2e66f6e38063d1 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Tue, 6 Jan 2015 12:02:38 -0500 Subject: tools/run-pep8: remove leading ',' fed to --ignore --ignore was being called with ',E121,E...' rather than 'E121,E...'. that resulted in odd behavior, missing the pep8 errors that are fixed here. --- tools/run-pep8 | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') diff --git a/tools/run-pep8 b/tools/run-pep8 index d0a131f6..ccd6be5a 100755 --- a/tools/run-pep8 +++ b/tools/run-pep8 @@ -24,6 +24,7 @@ IGNORE="$IGNORE,E126" # Continuation line over-indented for hanging indent IGNORE="$IGNORE,E127" # Continuation line over-indented for visual indent IGNORE="$IGNORE,E128" # Continuation line under-indented for visual indent IGNORE="$IGNORE,E502" # The backslash is redundant between brackets +IGNORE="${IGNORE#,}" # remove the leading ',' added above cmd=( ${base}/hacking.py -- cgit v1.2.3