summaryrefslogtreecommitdiffstats
path: root/test/TEMPFILEPREFIX.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/TEMPFILEPREFIX.py')
-rw-r--r--test/TEMPFILEPREFIX.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/TEMPFILEPREFIX.py b/test/TEMPFILEPREFIX.py
index 8e756af..f0743e6 100644
--- a/test/TEMPFILEPREFIX.py
+++ b/test/TEMPFILEPREFIX.py
@@ -38,8 +38,9 @@ test = TestSCons.TestSCons(match = TestSCons.match_re)
test.write('echo.py', """\
#!/usr/bin/env python
+from __future__ import print_function
import sys
-print sys.argv
+print(sys.argv)
""")
echo_py = test.workpath('echo.py')