aboutsummaryrefslogtreecommitdiffstats
path: root/easy_install.py
diff options
context:
space:
mode:
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: