summaryrefslogtreecommitdiff
path: root/test/MSVS
diff options
context:
space:
mode:
authorBill <Bill@mediadog7-2>2016-05-14 15:41:52 -0700
committerBill <Bill@mediadog7-2>2016-05-14 15:41:52 -0700
commit5d4579948a4d605b77bdb623afb9fb5e73bf886d (patch)
tree3e5b247ffc07be06e9b95a7f108cafcda1e63b81 /test/MSVS
parented4ac33553bc4eea4ffdc645066cf51ab5e50219 (diff)
downloadscons-5d4579948a4d605b77bdb623afb9fb5e73bf886d.tar.gz
Fix print()
Diffstat (limited to 'test/MSVS')
-rw-r--r--test/MSVS/vs-10.0-exec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/MSVS/vs-10.0-exec.py b/test/MSVS/vs-10.0-exec.py
index 86b40421..1a4b59a1 100644
--- a/test/MSVS/vs-10.0-exec.py
+++ b/test/MSVS/vs-10.0-exec.py
@@ -55,7 +55,7 @@ if not msvs_version in test.msvs_versions():
test.run(arguments = '-n -q -Q -f -', stdin = """\
env = Environment(tools = ['msvc'], MSVS_VERSION='%(msvs_version)s')
-print "os.environ.update(%%s)" %% repr(env['ENV'])
+print("os.environ.update(%%s)" %% repr(env['ENV']))
""" % locals())
exec(test.stdout())