diff options
author | Tarek Ziade <tarek@ziade.org> | 2010-09-21 17:35:08 +0200 |
---|---|---|
committer | Tarek Ziade <tarek@ziade.org> | 2010-09-21 17:35:08 +0200 |
commit | a6f96e7709806a0211de70a0eb9089de77d000e2 (patch) | |
tree | 7b71e592a01fd607c1990f61f0c80ccdd1d0260f /setuptools | |
parent | 35b06106c2c50e0d0709f2e75be4bc8fe56aef34 (diff) | |
download | external_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
Diffstat (limited to 'setuptools')
-rw-r--r-- | setuptools/command/bdist_egg.py | 2 |
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 # |