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 | c2abf132c7723fbb0716c6bb8bbf420c23538d8f (patch) | |
| tree | eee3186d70b559d5d739d75869a00ec77815e9f8 /easy_install.py | |
| parent | 908b8d4dba508b5c1a268e3d5a2c1f5fe38319de (diff) | |
| download | python-setuptools-bitbucket-c2abf132c7723fbb0716c6bb8bbf420c23538d8f.tar.gz | |
Fix typo
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: |
