This commit is contained in:
prculley 2016-07-16 10:48:26 -05:00
parent 617569a234
commit e6923620ea

View File

@ -782,7 +782,7 @@ class Lexer:
# line_value, but in case there is more then one, remove extra # line_value, but in case there is more then one, remove extra
# spaces after CONC/CONT processing # spaces after CONC/CONT processing
# Also, Gedcom spec says there should be no spaces at end of # Also, Gedcom spec says there should be no spaces at end of
# line, however some programs put them there (FTM), so lets # line, however some programs put them there (FTM), so let's
# leave them in place. # leave them in place.
data = data[:2] + (data[2].lstrip(),) + data[3:] data = data[:2] + (data[2].lstrip(),) + data[3:]
self.current_list.insert(0, data) self.current_list.insert(0, data)