diff options
author | pje <pje@6015fed2-1504-0410-9fe1-9d1591cc4771> | 2005-07-04 18:45:02 +0000 |
---|---|---|
committer | pje <pje@6015fed2-1504-0410-9fe1-9d1591cc4771> | 2005-07-04 18:45:02 +0000 |
commit | ad8d9ad03cdca0d7f8fc82bfd168864582cc3c6c (patch) | |
tree | eee3186d70b559d5d739d75869a00ec77815e9f8 /easy_install.py | |
parent | 0774ad70ed9ab442890087ff4fd425551166968b (diff) | |
download | python-setuptools-ad8d9ad03cdca0d7f8fc82bfd168864582cc3c6c.tar.gz |
Fix typo
git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@41075 6015fed2-1504-0410-9fe1-9d1591cc4771
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 4095054..9ce3a0a 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: |