* src/PluginUtils/_ReportUtils.py: handle no person error

svn: r6818
This commit is contained in:
Brian Matherly 2006-05-30 02:36:25 +00:00
parent 8ebd09eabb
commit 57d09536b5
2 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* src/plugins/DetDescendantReport.py: insert name keys for indexing.
* src/plugins/DetAncestralReport.py: insert name keys for indexing.
* src/plugins/FamilyGroup.py: print descriptions for events.
* src/PluginUtils/_ReportUtils.py: handle no person error
2006-05-29 Alex Roitman <shura@gramps-project.org>
* src/Editors/_EditFamily.py (EditFamily.save): Typo.

View File

@ -2209,6 +2209,9 @@ def get_person_key(db,person):
@param db: the GRAMPS database instance
@param person: the the key is for
"""
if not person:
return ""
name = person.get_primary_name().get_name()
birth = " "
death = " "