diff options
Diffstat (limited to 'test/Repository/option-f.py')
-rw-r--r-- | test/Repository/option-f.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Repository/option-f.py b/test/Repository/option-f.py index aec9418..8511f6a 100644 --- a/test/Repository/option-f.py +++ b/test/Repository/option-f.py @@ -43,10 +43,9 @@ test.write(['repository', 'SConstruct'], """\ Repository(r'%s') 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() env = Environment(BUILDERS={'Build':Builder(action=cat)}) |