0004412: Entering a witness to an event such as marriage

In some circumstances (after a Father's age of Mother's age) a witness
could be ignored.
This commit is contained in:
kulath 2015-04-01 14:50:37 +01:00 committed by Ross Gammon
parent 50ce6c6c79
commit e74955d5f8

View File

@ -5743,7 +5743,7 @@ class GedcomParser(UpdateCallback):
"""
while True:
line = self.__get_next_line()
if self.__level_is_finished(line, state.level):
if self.__level_is_finished(line, state.level+1):
break
elif line.token == TOKEN_AGE:
attr = Attribute()
@ -5764,7 +5764,7 @@ class GedcomParser(UpdateCallback):
"""
while True:
line = self.__get_next_line()
if self.__level_is_finished(line, state.level):
if self.__level_is_finished(line, state.level+1):
break
elif line.token == TOKEN_AGE:
attr = Attribute()