From a7b12c2ec05b8a17a96821ceb1da88efbbdbeb06 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Thu, 16 Feb 2006 21:38:42 +0000 Subject: [PATCH] * src/ReadGedcom.py: remove debugging statements svn: r5944 --- gramps2/ChangeLog | 3 +++ gramps2/src/ReadGedcom.py | 4 ---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 73a9a9743..e50875227 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2006-02-16 Don Allingham + * src/ReadGedcom.py: remove debugging statements + 2006-02-15 Alex Roitman * src/ReportUtils.py (old_calc_age): Correct the logic. diff --git a/gramps2/src/ReadGedcom.py b/gramps2/src/ReadGedcom.py index d68f1adb3..b293a4a2b 100644 --- a/gramps2/src/ReadGedcom.py +++ b/gramps2/src/ReadGedcom.py @@ -329,22 +329,18 @@ class IdMapper: gramps_id = str(gramps_id) handle = self.idswap.get(gramps_id) - print handle, self.idswap if not handle: if self.trans_func(gramps_id): handle = self.gen_next_id() else: handle = gramps_id self.idswap[gramps_id] = handle - print "mapping %s to %s" % (gramps_id,handle) return handle def convert_to_handle(self,gramps_id): - print "converting %s to %s" % (gramps_id, self.id2handle.get(gramps_id)) return self.id2handle.get(gramps_id) def save_id_to_handle(self,gramps_id,handle): - print "storing %s to %s" % (gramps_id, handle) self.id2handle[gramps_id] = handle