https://gramps-project.org/bugs/view.php?id=8548#c41455 also reported and patched by 'hmmmpf' on #4161
This commit is contained in:
parent
fd90c19515
commit
afe7fa39f9
@ -636,9 +636,8 @@ class GeneWebParser(object):
|
||||
birth_source = self.get_or_create_source(self.decode(fields[idx]))
|
||||
idx += 1
|
||||
elif field[0] == '!':
|
||||
LOG.debug("Baptize at: %s" % fields[idx])
|
||||
bapt_date = self.parse_date(self.decode(fields[idx][1:]))
|
||||
idx += 1
|
||||
LOG.debug("Baptize at: %s" % field[1:])
|
||||
bapt_date = self.parse_date(self.decode(field[1:]))
|
||||
elif field == '#bp' and idx < len(fields):
|
||||
LOG.debug("Birth Place: %s" % fields[idx])
|
||||
birth_place = self.get_or_create_place(self.decode(fields[idx]))
|
||||
|
Loading…
Reference in New Issue
Block a user