src/SubstKeywords.py: Fix 0000813: IDs in graphical reports error

svn: r7879
This commit is contained in:
Brian Matherly 2007-01-08 03:12:42 +00:00
parent d5ff16800a
commit a85bbf485e
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2007-01-07 Brian Matherly <brian@gramps-project.org>
* src/SubstKeywords.py: Fix 0000813: IDs in graphical reports error
2007-01-07 Don Allingham <don@gramps-project.org>
* src/RelLib/*.py: pylint fixes

View File

@ -97,7 +97,7 @@ class SubstKeywords:
dplace_handle = death.get_place_handle()
if dplace_handle:
self.D = database.get_place_from_handle(dplace_handle).get_title()
self.i = str(person_handle)
self.i = person.get_gramps_id()
if person.get_family_handle_list():
f_id = person.get_family_handle_list()[0]