diff options
Diffstat (limited to 'test/Glob/Repository.py')
-rw-r--r-- | test/Glob/Repository.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Glob/Repository.py b/test/Glob/Repository.py index 2b0a5bb..5783443 100644 --- a/test/Glob/Repository.py +++ b/test/Glob/Repository.py @@ -49,10 +49,9 @@ opts = "-Y " + test.workpath('repository') test.write(['repository', 'SConstruct'], """\ def cat(env, source, target): target = str(target[0]) - source = map(str, source) f = open(target, "wb") for src in source: - f.write(open(src, "rb").read()) + f.write(open(str(src), "rb").read()) f.close() # Verify that we can glob a repository-only Node that exists |