From f40b1114b6c684afff8d326ac2bc5b35f8c1fa5c Mon Sep 17 00:00:00 2001 From: Tarek Ziade Date: Tue, 8 Feb 2011 12:05:58 +0100 Subject: [PATCH] fixed typo --- flake8/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake8/__init__.py b/flake8/__init__.py index 2f5574e..4ce9a3b 100644 --- a/flake8/__init__.py +++ b/flake8/__init__.py @@ -120,7 +120,7 @@ def main(): warnings += checkPath(fullpath) warnings += pep8.input_file(fullpath) else: - if skip_file(filename): + if skip_file(arg): continue warnings += checkPath(arg) warnings += pep8.input_file(arg)