From 97f5dd03d1353f5d7f0d6f48a0d75f0fd20277fa Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Thu, 9 Mar 2006 03:53:09 +0000 Subject: [PATCH] fix editperson calls svn: r6109 --- gramps2/src/Editors/_EditFamily.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps2/src/Editors/_EditFamily.py b/gramps2/src/Editors/_EditFamily.py index 209bd2d2d..094b22bab 100644 --- a/gramps2/src/Editors/_EditFamily.py +++ b/gramps2/src/Editors/_EditFamily.py @@ -228,7 +228,7 @@ class ChildEmbedList(EmbeddedList): def edit_button_clicked(self,obj): handle = self.get_selected() if handle: - import EditPerson + from _EditPerson import EditPerson try: person = self.dbstate.db.get_person_from_handle(handle) EditPerson.EditPerson(self.dbstate,self.uistate,self.track,person) @@ -480,7 +480,7 @@ class EditFamily(EditPrimary): def edit_person(self,obj,event,handle): if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1: - import EditPerson + from _EditPerson import EditPerson try: person = self.db.get_person_from_handle(handle) EditPerson.EditPerson(self.dbstate, self.uistate,