summaryrefslogtreecommitdiffstats
path: root/test/no-arguments.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/no-arguments.py')
-rw-r--r--test/no-arguments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/no-arguments.py b/test/no-arguments.py
index e447ff6..953d827 100644
--- a/test/no-arguments.py
+++ b/test/no-arguments.py
@@ -40,7 +40,7 @@ test.write('SConstruct', r"""
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())