diff options
author | William Blevins <wblevins001@gmail.com> | 2016-01-24 16:36:12 (GMT) |
---|---|---|
committer | William Blevins <wblevins001@gmail.com> | 2016-01-24 16:36:12 (GMT) |
commit | 36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078 (patch) | |
tree | 9d10b6f009624a613c6a78b71736d0416849f329 /test/exitfns.py | |
parent | 358c0de48a7d9fecdb30e24505c066506dfcdeff (diff) | |
download | SCons-36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078.zip SCons-36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078.tar.gz SCons-36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078.tar.bz2 |
Resolving a batch of failing tests for python 2.7.
Note: please evaluate python 3.X compliance.
Diffstat (limited to 'test/exitfns.py')
-rw-r--r-- | test/exitfns.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/exitfns.py b/test/exitfns.py index f64969b..d1bda3a 100644 --- a/test/exitfns.py +++ b/test/exitfns.py @@ -32,11 +32,11 @@ sconstruct = """ from SCons.exitfuncs import * def x1(): - print "running x1" + print("running x1") def x2(n): - print "running x2(%s)" % repr(n) + print("running x2(%s)" % repr(n)) def x3(n, kwd=None): - print "running x3(%s, kwd=%s)" % (repr(n), repr(kwd)) + print("running x3(%s, kwd=%s)" % (repr(n), repr(kwd))) register(x3, "no kwd args") register(x1) |