[MERGE] "%s" % a + b should be "%s" % (a + b).

bzr revid: vmt@openerp.com-20110606081752-crltlidap2t1hloj
This commit is contained in:
Vo Minh Thu 2011-06-06 10:17:52 +02:00
commit 641f3a88f3
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ class TestReport(object):
success += self._report[severity][True]
failure += self._report[severity][False]
res.append("total\t%s\t%s" % (success, failure))
res.append("end of report (%s assertion(s) checked)" % success + failure)
res.append("end of report (%s assertion(s) checked)" % (success + failure))
return "\n".join(res)
class RecordDictWrapper(dict):