events gramplet: check for existing family

This commit is contained in:
Doug Blank 2015-07-13 13:19:59 -04:00
parent 6e68cc3f73
commit feee26f74a

View File

@ -174,6 +174,7 @@ class PersonEvents(Events):
return True return True
for family_handle in active_person.get_family_handle_list(): for family_handle in active_person.get_family_handle_list():
family = self.dbstate.db.get_family_from_handle(family_handle) family = self.dbstate.db.get_family_from_handle(family_handle)
if family:
for event_ref in family.get_event_ref_list(): for event_ref in family.get_event_ref_list():
return True return True
return False return False