Incorporate @phd's patch.

This commit is contained in:
Ian Cordasco 2012-11-06 16:24:14 -05:00
parent c89ac53cfb
commit 297a566b46

View file

@ -21,6 +21,8 @@ pep8style = None
def check_file(path, complexity=-1):
if pep8style.excluded(path):
return 0
warnings = pyflakes.checkPath(path)
warnings += pep8style.input_file(path)
if complexity > -1: