change stats alignment

This commit is contained in:
Damien Elmes 2011-12-01 17:15:17 +09:00
parent e8f4d04420
commit 320bb7c82f

View file

@ -59,7 +59,7 @@ class CardStats(object):
self.txt += self.makeLine(k, v)
def makeLine(self, k, v):
txt = "<tr><td align=right style='padding-right: 3px;'>"
txt = "<tr><td align=left style='padding-right: 3px;'>"
txt += "<b>%s</b></td><td>%s</td></tr>" % (k, v)
return txt