commit | 4e6531e7dee5ff9b27c108e8614d336657e68a21 | [log] [tgz] |
---|---|---|
author | Alexandre Vassalotti <alexandre@peadrop.com> | Fri May 09 20:00:17 2008 +0000 |
committer | Alexandre Vassalotti <alexandre@peadrop.com> | Fri May 09 20:00:17 2008 +0000 |
tree | 43b23c55f5bd5c6872c71c928e2b68c78dff3880 | |
parent | 14a767d4f499c8ead06a14d9c64c01c4ced95e61 [diff] [blame] |
Removed remnants of os.path.walk().
diff --git a/Tools/scripts/findlinksto.py b/Tools/scripts/findlinksto.py index 4fde30d..d3da7e4 100755 --- a/Tools/scripts/findlinksto.py +++ b/Tools/scripts/findlinksto.py
@@ -22,7 +22,7 @@ pat, dirs = args[0], args[1:] prog = re.compile(pat) for dirname in dirs: - os.path.walk(dirname, visit, prog) + os.walk(dirname, visit, prog) def visit(prog, dirname, names): if os.path.islink(dirname):