summaryrefslogtreecommitdiff
path: root/test/GetOption
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2016-01-01 15:59:23 +0000
committerRussel Winder <russel@winder.org.uk>2016-01-01 15:59:23 +0000
commitf075b096be96479dbb162b71273b9012c88902f1 (patch)
tree4b30c7fe89b85380b9c825c906e2745c4d7c96d1 /test/GetOption
parenteaf9ba8362c74ce7589b5d2bfc6049d92d0c8d61 (diff)
downloadscons-f075b096be96479dbb162b71273b9012c88902f1.tar.gz
Some more statement to function transforms.
Diffstat (limited to 'test/GetOption')
-rw-r--r--test/GetOption/help.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/GetOption/help.py b/test/GetOption/help.py
index e2eeef7e..4f15fe6c 100644
--- a/test/GetOption/help.py
+++ b/test/GetOption/help.py
@@ -34,9 +34,9 @@ test = TestSCons.TestSCons()
test.write('SConstruct', """\
if GetOption('help'):
- print "GetOption('help') set"
+ print("GetOption('help') set")
else:
- print "no help for you"
+ print("no help for you")
""")
test.run(arguments = '-q -Q', stdout = "no help for you\n")