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/Mac/scripts/cachersrc.py b/Mac/scripts/cachersrc.py index e0e8415..49a20c0 100644 --- a/Mac/scripts/cachersrc.py +++ b/Mac/scripts/cachersrc.py
@@ -39,7 +39,7 @@ if o == '-f': force = 1 for dir in sys.argv[1:]: - os.path.walk(dir, handler, (verbose, force)) + os.walk(dir, handler, (verbose, force)) if __name__ == '__main__': main()