Fixed integer/string ordering problem

svn: r201
This commit is contained in:
Don Allingham 2001-06-28 21:56:49 +00:00
parent f62f7d0380
commit d2f751bc96

View File

@ -97,7 +97,7 @@ def report(database,person):
text = text + "----------------------------\n"
text = text + "%s : %d\n" % (_("Individuals with photos"),with_photos)
text = text + "%s : %d\n" % (_("Total number of photos"),total_photos)
text = text + "%s : %d %s\n" % (_("Total size of photos"),_("bytes"),bytes)
text = text + "%s : %d %s\n" % (_("Total size of photos"),bytes,_("bytes"))
text = text + "\n%s\n" % _("Family Information")
text = text + "----------------------------\n"
text = text + "%s : %d\n" % (_("Number of families"),len(familyList))