diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-02-28 19:09:02 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-02-28 19:09:02 (GMT) |
commit | 81d313cb7f3df275d0704f8f26c7bca9db467689 (patch) | |
tree | 74bea5acb110a872d98a36a7faccb099ee7f72df | |
parent | 82acd51fa840fcefb03c8dc2e112693f18168615 (diff) | |
download | SCons-81d313cb7f3df275d0704f8f26c7bca9db467689.zip SCons-81d313cb7f3df275d0704f8f26c7bca9db467689.tar.gz SCons-81d313cb7f3df275d0704f8f26c7bca9db467689.tar.bz2 |
py2/3 fixes
-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'], """ |