Commit 8a4d2f4e authored by PJ Eby's avatar PJ Eby

Fix typo

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041075
parent ca83a912
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment