diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/TestSCons.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/TestSCons.py b/etc/TestSCons.py index 997104b..c97fd48 100644 --- a/etc/TestSCons.py +++ b/etc/TestSCons.py @@ -125,8 +125,8 @@ class TestSCons(TestCmd.TestCmd): if _failed(self, status): expect = '' if status != 0: - expect = " (expected %d)" % status - print "%s returned %d%s" % (self.program, _status(self), expect) + expect = " (expected %s)" % str(status) + print "%s returned %s%s" % (self.program, str(_status(self)), expect) print "STDOUT ============" print self.stdout() print "STDERR ============" |