summaryrefslogtreecommitdiff
path: root/python/subunit
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
commite784068d9cebd39d3f5daa238d2b4e0c28ad72a6 (patch)
tree1321aa3bd1c9fcb0ed4788a1c6d90398e5197d21 /python/subunit
parentd172dafd8deb09eb4fcc0454db024c5c9ed2bfd3 (diff)
downloadsubunit-e784068d9cebd39d3f5daa238d2b4e0c28ad72a6.tar.gz
Fix Python 3 syntax error.
Diffstat (limited to 'python/subunit')
-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: