summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/bdist_egg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py
index 90e1f525..3bb56fc3 100644
--- a/setuptools/command/bdist_egg.py
+++ b/setuptools/command/bdist_egg.py
@@ -535,6 +535,6 @@ def make_zipfile(zip_filename, base_dir, verbose=0, dry_run=0, compress=None,
z.close()
else:
for dirname, dirs, files in os.walk(base_dir):
- visit(None, dirname, file)
+ visit(None, dirname, files)
return zip_filename
#