diff options
| author | Jonathan Lange <jml@canonical.com> | 2011-07-26 22:58:00 +0100 |
|---|---|---|
| committer | Jonathan Lange <jml@canonical.com> | 2011-07-26 22:58:00 +0100 |
| commit | e784068d9cebd39d3f5daa238d2b4e0c28ad72a6 (patch) | |
| tree | 1321aa3bd1c9fcb0ed4788a1c6d90398e5197d21 /python/subunit | |
| parent | d172dafd8deb09eb4fcc0454db024c5c9ed2bfd3 (diff) | |
| download | subunit-e784068d9cebd39d3f5daa238d2b4e0c28ad72a6.tar.gz | |
Fix Python 3 syntax error.
Diffstat (limited to 'python/subunit')
| -rwxr-xr-x | python/subunit/run.py | 2 |
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: |
