Merged in cyberdelia/flake8/regexp-search (pull request #6)

This commit is contained in:
Tarek Ziadé 2012-02-06 14:14:55 -08:00
commit a6fba0ebb5

View file

@ -24,4 +24,4 @@ def skip_file(path):
content = f.read()
finally:
f.close()
return _NOQA.match(content) is not None
return _NOQA.search(content) is not None