diff options
author | Russel Winder <russel@winder.org.uk> | 2016-01-01 13:52:31 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2016-01-01 13:52:31 (GMT) |
commit | 34cf3bdb1743de9a5534bfd25998d0a01297f004 (patch) | |
tree | 95b6de82092af962dd5136c4017e7388bbb72aa2 /test/site_scons | |
parent | 2a270c8f314e959c78e9deda29c8f250bb934dd6 (diff) | |
download | SCons-34cf3bdb1743de9a5534bfd25998d0a01297f004.zip SCons-34cf3bdb1743de9a5534bfd25998d0a01297f004.tar.gz SCons-34cf3bdb1743de9a5534bfd25998d0a01297f004.tar.bz2 |
Run futurize --stage1.
Diffstat (limited to 'test/site_scons')
-rw-r--r-- | test/site_scons/sysdirs.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/site_scons/sysdirs.py b/test/site_scons/sysdirs.py index 663700b..60b4f0b 100644 --- a/test/site_scons/sysdirs.py +++ b/test/site_scons/sysdirs.py @@ -22,6 +22,8 @@ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # +from __future__ import print_function + __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import TestSCons @@ -54,10 +56,10 @@ else: dir_to_check_for='.scons' if 'Loading site dir' not in test.stdout(): - print test.stdout() + print(test.stdout()) test.fail_test() if dir_to_check_for not in test.stdout(): - print test.stdout() + print(test.stdout()) test.fail_test() test.pass_test() |