From b6ce79fbbed8ef1c9a5166a3d99198917c163dc2 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 --- src/GrampsDbBase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GrampsDbBase.py b/src/GrampsDbBase.py index 66a0371af..3a8ca5c3c 100644 --- a/src/GrampsDbBase.py +++ b/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.