summaryrefslogtreecommitdiffstats
path: root/test/custom-concat.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/custom-concat.py')
-rw-r--r--test/custom-concat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/custom-concat.py b/test/custom-concat.py
index 56c7f64..730e6cd 100644
--- a/test/custom-concat.py
+++ b/test/custom-concat.py
@@ -44,7 +44,7 @@ env1 = Environment(MYFLAGS=myflags, _concat = my_concat1,
MYPREFIX='p', MYSUFFIX='s',
STRIPPREFIX='xxx', STRIPSUFFIX='yyy',
LIST=['a', 'xxxb', 'cyyy', 'd'])
-print env1.subst('$MYFLAGS')
+print(env1.subst('$MYFLAGS'))
""")
expect = test.wrap_stdout(read_str = "mypas1 mypbs1 mypcs1 mypds1\n",