diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-09 20:00:17 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-09 20:00:17 (GMT) |
commit | 4e6531e7dee5ff9b27c108e8614d336657e68a21 (patch) | |
tree | 43b23c55f5bd5c6872c71c928e2b68c78dff3880 /Tools/i18n | |
parent | 14a767d4f499c8ead06a14d9c64c01c4ced95e61 (diff) | |
download | cpython-4e6531e7dee5ff9b27c108e8614d336657e68a21.zip cpython-4e6531e7dee5ff9b27c108e8614d336657e68a21.tar.gz cpython-4e6531e7dee5ff9b27c108e8614d336657e68a21.tar.bz2 |
Removed remnants of os.path.walk().
Diffstat (limited to 'Tools/i18n')
-rwxr-xr-x | Tools/i18n/pygettext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/i18n/pygettext.py b/Tools/i18n/pygettext.py index 69a19ef..4f0866e 100755 --- a/Tools/i18n/pygettext.py +++ b/Tools/i18n/pygettext.py @@ -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 |