summaryrefslogtreecommitdiffstats
path: root/test/ConstructionEnvironment.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ConstructionEnvironment.py')
-rw-r--r--test/ConstructionEnvironment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ConstructionEnvironment.py b/test/ConstructionEnvironment.py
index bec46b9..e25f86a 100644
--- a/test/ConstructionEnvironment.py
+++ b/test/ConstructionEnvironment.py
@@ -38,7 +38,7 @@ import SCons.Defaults
SCons.Defaults.ConstructionEnvironment.update({
'XXX' : 777,
})
-print DefaultEnvironment()['XXX']
+print(DefaultEnvironment()['XXX'])
""")
expect = test.wrap_stdout(read_str = "777\n",