summaryrefslogtreecommitdiff
path: root/test/SConstruct.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2016-05-09 15:39:27 -0700
committerWilliam Deegan <bill@baddogconsulting.com>2016-05-09 15:39:27 -0700
commit985cfd23c9cfcaeb04eb884511600216380a77fe (patch)
tree8c2bde9540a153f237f8d09532174826123c1d6c /test/SConstruct.py
parent818d5adbda0f5b28df1f2c27ae0730929f731d7e (diff)
downloadscons-985cfd23c9cfcaeb04eb884511600216380a77fe.tar.gz
Fixed print()'s
Diffstat (limited to 'test/SConstruct.py')
-rw-r--r--test/SConstruct.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/SConstruct.py b/test/SConstruct.py
index 15e1c1be..9b2807fa 100644
--- a/test/SConstruct.py
+++ b/test/SConstruct.py
@@ -41,7 +41,7 @@ wpath = test.workpath()
test.write('sconstruct', """
import os
-print "sconstruct", os.getcwd()
+print("sconstruct", os.getcwd())
""")
test.run(arguments = ".",
@@ -51,7 +51,7 @@ test.run(arguments = ".",
test.write('Sconstruct', """
import os
-print "Sconstruct", os.getcwd()
+print("Sconstruct", os.getcwd())
""")
test.run(arguments = ".",
@@ -60,7 +60,7 @@ test.run(arguments = ".",
test.write('SConstruct', """
import os
-print "SConstruct", os.getcwd()
+print("SConstruct", os.getcwd())
""")
test.run(arguments = ".",