aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt6
-rw-r--r--setuptools/command/bdist_egg.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 342ad4bb..3d9f905c 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,6 +3,12 @@ CHANGES
=======
------
+0.6.15
+------
+
+* Fixed typo in bdist_egg
+
+------
0.6.14
------
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
#