diff options
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: |