4161: Fix empty #buri fields

Still present on Geneweb 6 and 7alpha

patch by 'hmmmpf'
This commit is contained in:
Jérôme Rapinat 2015-05-26 20:30:43 +02:00
parent afe7fa39f9
commit 24bf67db3c

View File

@ -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]))