From 7d2b8e6b07ea10157681d8debb6d8a5f3a936bec Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Mon, 19 Nov 2012 21:36:44 -0500 Subject: [PATCH] Fixes #40 I missed one of the lines changed where pep8style was required for skip_file. --- flake8/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake8/run.py b/flake8/run.py index f7b5b52..d1af4d3 100644 --- a/flake8/run.py +++ b/flake8/run.py @@ -96,7 +96,7 @@ def _get_files(repo, **kwargs): seen.add(file_) if not file_.endswith('.py'): continue - if skip_file(file_, pep8style): + if skip_file(file_): continue yield file_