Move 2.0 changes collected in branches/pending back to trunk for further
[scons.git] / test / Win32 / default-drive.py
index 84e6389f4f66def3ba644085a87925ffd36efc43..f427a20332a54ea2978bd07b9deda4de7d51f1d9 100644 (file)
@@ -46,10 +46,9 @@ test.subdir('src')
 test.write(['src', '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()
 
 env = Environment(BUILDERS={'Build':Builder(action=cat)})