svn: r6322
This commit is contained in:
Alex Roitman 2006-04-13 03:37:41 +00:00
parent ff731e3c14
commit 2b43733165

View File

@ -690,7 +690,9 @@ class Person(PrimaryObject,SourceBase,NoteBase,MediaBase,
Person's L{Family} list. Person's L{Family} list.
@type family_handle: str @type family_handle: str
""" """
self.parent_family_list.append((family_handle, mrel, frel)) if type(family_handle) not in (str ,unicode ):
raise ValueError("expecting handle")
self.parent_family_list.append(family_handle)
def clear_parent_family_handle_list(self): def clear_parent_family_handle_list(self):
""" """