diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-04 18:45:02 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-04 18:45:02 +0000 |
commit | 8a4d2f4e3f1c64141cf94f1ca697cdc2c63ec0c6 (patch) | |
tree | eee3186d70b559d5d739d75869a00ec77815e9f8 /easy_install.py | |
parent | ca83a912c2bb677c72c0ee807198f90748af9204 (diff) | |
download | external_python_setuptools-8a4d2f4e3f1c64141cf94f1ca697cdc2c63ec0c6.tar.gz external_python_setuptools-8a4d2f4e3f1c64141cf94f1ca697cdc2c63ec0c6.tar.bz2 external_python_setuptools-8a4d2f4e3f1c64141cf94f1ca697cdc2c63ec0c6.zip |
Fix typo
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041075
Diffstat (limited to 'easy_install.py')
-rwxr-xr-x | easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/easy_install.py b/easy_install.py index 40950541..9ce3a0a1 100755 --- a/easy_install.py +++ b/easy_install.py @@ -192,7 +192,7 @@ class easy_install(Command): def add_output(self, path): if os.path.isdir(path): - for base, dirs, files in walk(path): + for base, dirs, files in os.walk(path): for filename in files: self.outputs.append(os.path.join(base,filename)) else: |