testr: fix Python 3 compatibility

Change-Id: Id6d15638277433f202857d2541e727b2b534c99c
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2013-07-05 14:40:35 +02:00
parent c996027aa2
commit ce11c732ac
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class Testr(cmd.Command):
raise distutils.errors.DistutilsError(
"testr failed (%d)" % testr_ret)
if self.slowest:
print "Slowest Tests"
print("Slowest Tests")
self._run_testr("slowest")
if self.coverage:
self._coverage_after()