summaryrefslogtreecommitdiffstats
path: root/test/CacheDir/VariantDir.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/CacheDir/VariantDir.py')
-rw-r--r--test/CacheDir/VariantDir.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CacheDir/VariantDir.py b/test/CacheDir/VariantDir.py
index 8ba3e78..b665fe3 100644
--- a/test/CacheDir/VariantDir.py
+++ b/test/CacheDir/VariantDir.py
@@ -43,10 +43,9 @@ test.write(['src', 'SConscript'], """\
def cat(env, source, target):
target = str(target[0])
open('cat.out', 'ab').write(target + "\\n")
- 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={'Cat':Builder(action=cat)})
env.Cat('aaa.out', 'aaa.in')