From 6e59b083df58c6267d454ff4f773cc1c6fb5522f Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Sat, 23 Apr 2005 16:03:24 +0000 Subject: [PATCH] typo fixes svn: r4407 --- gramps2/src/GrampsDbBase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps2/src/GrampsDbBase.py b/gramps2/src/GrampsDbBase.py index 66a0371af..3a8ca5c3c 100644 --- a/gramps2/src/GrampsDbBase.py +++ b/gramps2/src/GrampsDbBase.py @@ -496,7 +496,7 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback): return self._find_from_handle(handle,transaction,Event, self.event_map,self.add_event) - def find_object_from_handle(self,val,transaction): + def find_object_from_handle(self,handle,transaction): """ Finds an MediaObject in the database from the passed GRAMPS ID. If no such MediaObject exists, a new Object is added to the database.""" @@ -504,7 +504,7 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback): return self._find_from_handle(handle,transaction,MediaObject, self.media_map,self.add_object) - def find_place_from_handle(self,val,transaction): + def find_place_from_handle(self,handle,transaction): """ Finds a Place in the database from the passed GRAMPS ID. If no such Place exists, a new Place is added to the database.