From f80033f36a67b4f672889d52b74cf542a7bb3f4e Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Tue, 10 Sep 2013 16:54:24 +0000 Subject: [PATCH] Ignore meaningless @IDENT@ on CONT or CONC line as detailed at http://www.tamurajones.net/IdentCONT.xhtml svn: r23082 --- src/plugins/lib/libgedcom.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/plugins/lib/libgedcom.py b/src/plugins/lib/libgedcom.py index 03ce1ae55..465d50977 100644 --- a/src/plugins/lib/libgedcom.py +++ b/src/plugins/lib/libgedcom.py @@ -735,6 +735,13 @@ class Lexer(object): # line is now [None, alphanum+pointer_string, rest] tag = '@' + line[1] + '@' line_value = line[2] + ## Ignore meaningless @IDENT@ on CONT or CONC line + ## as detailed at http://www.tamurajones.net/IdentCONT.xhtml + if (line_value.lstrip().startswith("CONT ") or + line_value.lstrip().startswith("CONC ")): + line = line_value.lstrip().partition(' ') + tag = line[0] + line_value = line[2] else: line = line.partition(' ') tag = line[0]