From 0e9cb5c7d1ee20a5f9a1832ed127b1230bd55580 Mon Sep 17 00:00:00 2001 From: Serge Noiraud Date: Sun, 14 Oct 2012 22:08:29 +0000 Subject: [PATCH] Geography : correction of format requires a mapping error svn: r20556 --- gramps/plugins/view/geofamclose.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/plugins/view/geofamclose.py b/gramps/plugins/view/geofamclose.py index 1a21d024c..e62db184e 100644 --- a/gramps/plugins/view/geofamclose.py +++ b/gramps/plugins/view/geofamclose.py @@ -548,8 +548,8 @@ class GeoFamClose(GeoGraphyView): handle = fam.get_mother_handle() mother = dbstate.db.get_person_from_handle(handle) if mother: - comment = _("Mother : %(id)s : %(name)s") % ( mother.gramps_id, - _nd.display(mother) ) + comment = _("Mother : %(id)s : %(name)s") % {'id': mother.gramps_id, + 'name': _nd.display(mother)} self._createmap_for_one_person(mother, color, place_list, reference) index = 0 child_ref_list = fam.get_child_ref_list()