From 8a7218260e2ec0f6eea85d0523c541d0d74280dc Mon Sep 17 00:00:00 2001 From: Martin Hawlisch Date: Thu, 9 Nov 2006 05:42:47 +0000 Subject: [PATCH] * src/plugins/ImportGeneWeb.py: Fix parsing of baptism date svn: r7590 --- gramps2/ChangeLog | 1 + gramps2/src/plugins/ImportGeneWeb.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index e5f06c298..c7b7dd6f2 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,5 +1,6 @@ 2006-11-08 Martin Hawlisch * src/date_test.py: Correct import of Date object + * src/plugins/ImportGeneWeb.py: Fix parsing of baptism date 2006-11-08 Don Allingham * src/DataViews/_RelationView.py: add toolbar buttons, catch edit diff --git a/gramps2/src/plugins/ImportGeneWeb.py b/gramps2/src/plugins/ImportGeneWeb.py index a78100600..66fcf2fe9 100644 --- a/gramps2/src/plugins/ImportGeneWeb.py +++ b/gramps2/src/plugins/ImportGeneWeb.py @@ -593,7 +593,7 @@ class GeneWebParser: idx += 1 elif fields[idx][0] == '!': self.debug("Baptize at: %s" % fields[idx]) - bapt_date = self.parse_date(self.decode(fields[idx])) + bapt_date = self.parse_date(self.decode(fields[idx][1:])) idx += 1 elif fields[idx] == '#bp': idx += 1