summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJonathan Lange <jml@canonical.com>2011-07-26 22:58:00 +0100
committerJonathan Lange <jml@canonical.com>2011-07-26 22:58:00 +0100
commit9ce3f298dbe17b500879a32b53f440635d522b0f (patch)
tree1321aa3bd1c9fcb0ed4788a1c6d90398e5197d21 /python
parent4b8f5718f920390fc995446767eaa0addacf5eb2 (diff)
downloadsubunit-git-9ce3f298dbe17b500879a32b53f440635d522b0f.tar.gz
Fix Python 3 syntax error.
Diffstat (limited to 'python')
-rwxr-xr-xpython/subunit/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/run.py b/python/subunit/run.py
index b390de3..51d6837 100755
--- a/python/subunit/run.py
+++ b/python/subunit/run.py
@@ -49,7 +49,7 @@ class SubunitTestProgram(TestProgram):
def usageExit(self, msg=None):
if msg:
- print msg
+ print (msg)
usage = {'progName': self.progName, 'catchbreak': '', 'failfast': '',
'buffer': ''}
if self.failfast != False: