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 | 9ce3f298dbe17b500879a32b53f440635d522b0f (patch) | |
| tree | 1321aa3bd1c9fcb0ed4788a1c6d90398e5197d21 /python | |
| parent | 4b8f5718f920390fc995446767eaa0addacf5eb2 (diff) | |
| download | subunit-git-9ce3f298dbe17b500879a32b53f440635d522b0f.tar.gz | |
Fix Python 3 syntax error.
Diffstat (limited to 'python')
| -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: |
