From 8a4d2f4e3f1c64141cf94f1ca697cdc2c63ec0c6 Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Mon, 4 Jul 2005 18:45:02 +0000 Subject: Fix typo --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041075 --- easy_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'easy_install.py') 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: -- cgit v1.2.3