summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Win32/bad-drive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Win32/bad-drive.py b/test/Win32/bad-drive.py
index 4d0d6e9..67a287a 100644
--- a/test/Win32/bad-drive.py
+++ b/test/Win32/bad-drive.py
@@ -59,7 +59,7 @@ test.write('SConstruct', """
def cat(env, source, target):
target = str(target[0])
source = list(map(str, source))
- print 'cat(%%s) > %%s' %% (source, target)
+ print('cat(%%s) > %%s' %% (source, target))
f = open(target, "wb")
for src in source:
f.write(open(src, "rb").read())