Two problems I didn't see before that are now fixed.

First, I never got around to testing my changes to @kilian's patch for #23 and
just found that I had mistyped a variable.

Also, on more complex code that what I had tested on previously, my patch to
pep8 was insufficient. This should work without error now.
This commit is contained in:
Ian Cordasco 2012-11-14 11:59:34 -05:00
parent 70a75d8f08
commit 2484edfbc8
2 changed files with 5 additions and 3 deletions

View file

@ -52,7 +52,7 @@ def _get_python_files(paths):
yield fullpath
else:
if not skip_file(path) or pep8style.excluded(fullpath):
if not skip_file(path) or pep8style.excluded(path):
yield path