Removed remnants of os.path.walk().

This commit is contained in:
Alexandre Vassalotti 2008-05-09 20:00:17 +00:00
parent 14a767d4f4
commit 4e6531e7de
8 changed files with 8 additions and 8 deletions

View file

@ -341,7 +341,7 @@ def getFilesForName(name):
if os.path.isdir(name):
# find all python files in directory
list = []
os.path.walk(name, _visit_pyfiles, list)
os.walk(name, _visit_pyfiles, list)
return list
elif os.path.exists(name):
# a single file