summaryrefslogtreecommitdiffstats
path: root/test/Variables/help.py
diff options
context:
space:
mode:
authorWilliam Blevins <wblevins001@gmail.com>2016-01-24 16:36:12 (GMT)
committerWilliam Blevins <wblevins001@gmail.com>2016-01-24 16:36:12 (GMT)
commit36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078 (patch)
tree9d10b6f009624a613c6a78b71736d0416849f329 /test/Variables/help.py
parent358c0de48a7d9fecdb30e24505c066506dfcdeff (diff)
downloadSCons-36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078.zip
SCons-36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078.tar.gz
SCons-36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078.tar.bz2
Resolving a batch of failing tests for python 2.7.
Note: please evaluate python 3.X compliance.
Diffstat (limited to 'test/Variables/help.py')
-rw-r--r--test/Variables/help.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Variables/help.py b/test/Variables/help.py
index f04f962..bee6011 100644
--- a/test/Variables/help.py
+++ b/test/Variables/help.py
@@ -81,8 +81,8 @@ opts.AddVariables(
env = Environment(variables=opts)
Help(opts.GenerateHelpText(env))
-print env['warnings']
-print env['profile']
+print(env['warnings'])
+print(env['profile'])
Default(env.Alias('dummy', None))
""" % locals())