diff options
-rw-r--r-- | test/site_scons/sys-path.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/site_scons/sys-path.py b/test/site_scons/sys-path.py index 46f84c7..40783ff 100644 --- a/test/site_scons/sys-path.py +++ b/test/site_scons/sys-path.py @@ -37,10 +37,10 @@ test.subdir('site_scons') test.subdir('sub1') test.write(['site_scons', 'testmod1.py'], """ -print "Imported site_scons/testmod1.py." +print("Imported site_scons/testmod1.py.") """) test.write(['site_scons', 'testmod2.py'], """ -print "Imported site_scons/testmod2.py." +print("Imported site_scons/testmod2.py.") """) test.write(['sub1', 'SConscript'], """ |