From 112e8b88cb2103153296b73956d02f43e469300d Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Thu, 28 Jun 2001 21:56:49 +0000 Subject: [PATCH] Fixed integer/string ordering problem svn: r201 --- gramps/src/plugins/Summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/src/plugins/Summary.py b/gramps/src/plugins/Summary.py index b7d43f665..ca23bbbf7 100644 --- a/gramps/src/plugins/Summary.py +++ b/gramps/src/plugins/Summary.py @@ -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))