From 32b884fc5d125ee56019795262ed06cf78f17c08 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Tue, 2 Aug 2005 20:01:24 +0000 Subject: [PATCH] removed print statements svn: r5003 --- gramps2/src/GrampsDbBase.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/gramps2/src/GrampsDbBase.py b/gramps2/src/GrampsDbBase.py index c7a3bc15a..936fd5db0 100644 --- a/gramps2/src/GrampsDbBase.py +++ b/gramps2/src/GrampsDbBase.py @@ -374,7 +374,6 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback): def commit_family_event(self,event,transaction,change_time=None): self.family_event_names.add(event.name) self.commit_event(event,transaction,change_time) - print self.family_event_names def commit_event(self,event,transaction,change_time=None): """ @@ -1056,7 +1055,6 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback): Returns the list of personal event types contained within the database. The function must be overridden in the derived class. """ - print self.individual_event_names return list(self.individual_event_names) def get_bookmarks(self): @@ -1104,7 +1102,6 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback): def get_person_event_types(self): """returns a list of all Event types assocated with Person instances in the database""" - print self.individual_event_names return list(self.individual_event_names) def get_person_attribute_types(self):