7053: Narrated Website report crashes; check for family == None on lookup

svn: r23076
This commit is contained in:
Doug Blank 2013-09-10 10:10:04 +00:00
parent 974f5a5393
commit d399f58bf6

View File

@ -616,6 +616,8 @@ class RelationshipCalculator(object):
birthmother = None
for fam in person.get_parent_family_handle_list():
family = db.get_family_from_handle(fam)
if not family:
continue
childrel = [(ref.get_mother_relation(),
ref.get_father_relation()) for ref in
family.get_child_ref_list()
@ -637,6 +639,8 @@ class RelationshipCalculator(object):
nb_parents = []
for fam in person.get_parent_family_handle_list():
family = db.get_family_from_handle(fam)
if not family:
continue
childrel = [(ref.get_mother_relation(),
ref.get_father_relation()) for ref in
family.get_child_ref_list()
@ -964,6 +968,8 @@ class RelationshipCalculator(object):
for family_handle in family_handles :
rel_fam_new = rel_fam + [fam]
family = db.get_family_from_handle(family_handle)
if not family:
continue
#obtain childref for this person
childrel = [(ref.get_mother_relation(),
ref.get_father_relation()) for ref in