aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarek Ziade <tarek@ziade.org>2010-09-21 17:35:08 +0200
committerTarek Ziade <tarek@ziade.org>2010-09-21 17:35:08 +0200
commita6f96e7709806a0211de70a0eb9089de77d000e2 (patch)
tree7b71e592a01fd607c1990f61f0c80ccdd1d0260f
parent35b06106c2c50e0d0709f2e75be4bc8fe56aef34 (diff)
downloadexternal_python_setuptools-a6f96e7709806a0211de70a0eb9089de77d000e2.tar.gz
external_python_setuptools-a6f96e7709806a0211de70a0eb9089de77d000e2.tar.bz2
external_python_setuptools-a6f96e7709806a0211de70a0eb9089de77d000e2.zip
fixed typo - thanks to Ted Tibbets
--HG-- branch : distribute extra : rebase_source : 87b145e4977333b08b77bdf857930f456c8b0e13
-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
#