summaryrefslogtreecommitdiff
path: root/easy_install.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-04 18:45:02 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-04 18:45:02 +0000
commitc2abf132c7723fbb0716c6bb8bbf420c23538d8f (patch)
treeeee3186d70b559d5d739d75869a00ec77815e9f8 /easy_install.py
parent908b8d4dba508b5c1a268e3d5a2c1f5fe38319de (diff)
downloadpython-setuptools-bitbucket-c2abf132c7723fbb0716c6bb8bbf420c23538d8f.tar.gz
Fix typo
Diffstat (limited to 'easy_install.py')
-rwxr-xr-xeasy_install.py2
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: