From aff45abbec77df2bb7e64fdcb3e9c90bf8a81a72 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Wed, 12 Apr 2006 03:10:28 +0000 Subject: [PATCH] Update svn: r6315 --- src/GrampsDb/_DbUtils.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/GrampsDb/_DbUtils.py b/src/GrampsDb/_DbUtils.py index 68d47c12f..727ef2ad1 100644 --- a/src/GrampsDb/_DbUtils.py +++ b/src/GrampsDb/_DbUtils.py @@ -102,9 +102,14 @@ def remove_child_from_family(db, person_handle, family_handle, trans=None): else: need_commit = False + child_list = family.get_child_handle_list() if (not family.get_father_handle() and not family.get_mother_handle() and - len(family.get_child_handle_list()) <= 1): + len(child_list) <= 1): db.remove_family(family_handle, trans) + if child_list: + child = db.get_person_from_handle(child_list[0]) + child.remove_parent_family_handle(family_handle) + db.commit_person(child, trans) else: db.commit_family(family, trans) db.commit_person(person, trans) @@ -130,5 +135,3 @@ def add_child_to_family(db, family, child, mrel=(RelLib.Person.CHILD_BIRTH,''), if need_commit: db.transaction_commit(trans, _('Add child to family') ) - -