From 24bf67db3c897b97fcff21892ad3c9d45e0ccdd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Tue, 26 May 2015 20:30:43 +0200 Subject: [PATCH] 4161: Fix empty #buri fields Still present on Geneweb 6 and 7alpha patch by 'hmmmpf' --- gramps/plugins/importer/importgeneweb.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gramps/plugins/importer/importgeneweb.py b/gramps/plugins/importer/importgeneweb.py index d9ca96cf8..1ad57fc16 100644 --- a/gramps/plugins/importer/importgeneweb.py +++ b/gramps/plugins/importer/importgeneweb.py @@ -659,9 +659,10 @@ class GeneWebParser(object): death_source = self.get_or_create_source(self.decode(fields[idx])) idx += 1 elif field == '#buri' and idx < len(fields): - LOG.debug("Burial Date: %s" % fields[idx]) - bur_date = self.parse_date(self.decode(fields[idx])) - idx += 1 + if fields[idx][0]!='#': # bug in GeneWeb: empty #buri fields + LOG.debug("Burial Date: %s" % fields[idx]) + bur_date = self.parse_date(self.decode(fields[idx])) + idx += 1 elif field == '#crem' and idx < len(fields): LOG.debug("Cremention Date: %s" % fields[idx]) crem_date = self.parse_date(self.decode(fields[idx]))