* src/GrampsInMemDB.py: new base class for in memory databases, such

as XML or GEDCOM
* src/GrampGEDDB.py: use new GrampsInMemDB base class
* src/GrampXMLDB.py: use new GrampsInMemDB base class
* src/Makefile.am: add GrampsInMemDB.py
* src/ReadGedcom.py: remove debug statements


svn: r3555
This commit is contained in:
Don Allingham
2004-09-19 04:11:34 +00:00
parent b9d8abee14
commit d382d7b094
9 changed files with 177 additions and 130 deletions

View File

@ -243,7 +243,7 @@ class CheckIntegrity:
child = self.db.get_person_from_handle(key)
child.remove_parent_family_handle(family_handle)
child.remove_family_handle(family_handle)
self.db.remove_family_handle(family_handle,self.trans)
self.db.remove_family(family_handle,self.trans)
def check_parent_relationships(self):
for key in self.db.get_family_handles():