summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/findlinksto.py
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-05-09 20:00:17 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-05-09 20:00:17 (GMT)
commit4e6531e7dee5ff9b27c108e8614d336657e68a21 (patch)
tree43b23c55f5bd5c6872c71c928e2b68c78dff3880 /Tools/scripts/findlinksto.py
parent14a767d4f499c8ead06a14d9c64c01c4ced95e61 (diff)
downloadcpython-4e6531e7dee5ff9b27c108e8614d336657e68a21.zip
cpython-4e6531e7dee5ff9b27c108e8614d336657e68a21.tar.gz
cpython-4e6531e7dee5ff9b27c108e8614d336657e68a21.tar.bz2
Removed remnants of os.path.walk().
Diffstat (limited to 'Tools/scripts/findlinksto.py')
-rwxr-xr-xTools/scripts/findlinksto.py2
1 files changed, 1 insertions, 1 deletions
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 @@ def main():
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):