fix spacing in card stats

This commit is contained in:
Damien Elmes 2009-01-05 06:14:00 +09:00
parent 91e90d8092
commit 9c226d5b4f

View file

@ -287,8 +287,8 @@ class CardStats(object):
c.averageTime) c.averageTime)
self.addLine(_("Total Time"), _("%0.1f seconds") % self.addLine(_("Total Time"), _("%0.1f seconds") %
c.reviewTime) c.reviewTime)
self.addLine(_("Model Tags") + " "*5, c.fact.model.tags) self.addLine(_("Model Tags"), c.fact.model.tags)
self.addLine(_("Card Template"), c.cardModel.name) self.addLine(_("Card Template") + " "*5, c.cardModel.name)
self.txt += "</table>" self.txt += "</table>"
return self.txt return self.txt