Fix type error in "python3 Gramps.py -L"

svn: r21461
This commit is contained in:
Tim G L Lyons 2013-02-26 17:27:33 +00:00
parent 5e8623cf1b
commit 41ba5c838e

View File

@ -423,8 +423,8 @@ class ArgHandler(object):
summary_list = self.dbman.family_tree_summary()
for summary in sorted(summary_list,
key=lambda sum: sum["Family tree"].lower()):
print(_("Family Tree \"%s\":").\
encode(sys.stdout.encoding, 'backslashreplace') % summary["Family tree"])
print(_("Family Tree \"%s\":") % summary["Family tree"].\
encode(sys.stdout.encoding, 'backslashreplace'))
for item in sorted(summary):
if item != "Family tree":
print((" %s: %s" % (item, summary[item])).\