From 192c323a0c7d39d83714d42e11c656f084a29a9c Mon Sep 17 00:00:00 2001 From: alexanderlukanin13 Date: Fri, 18 Oct 2013 11:30:48 +0600 Subject: [PATCH] wrong variable name --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0c44f8124..570654b08 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ if root_dir != '': os.chdir(root_dir) def is_not_module(filename): - return os.path.splitext(f)[1] not in ['.py', '.pyc', '.pyo'] + return os.path.splitext(filename)[1] not in ['.py', '.pyc', '.pyo'] for scrapy_dir in ['scrapy']: for dirpath, dirnames, filenames in os.walk(scrapy_dir):