Handle REFN too large to fit into an integer
svn: r1001
This commit is contained in:
parent
8e4f5a55ac
commit
f33e75bff4
@ -768,7 +768,10 @@ class GedcomParser:
|
||||
self.person.getPrimaryName().addSourceRef(source_ref)
|
||||
elif matches[1] == "REFN":
|
||||
if intRE.match(matches[2]):
|
||||
try:
|
||||
self.refn[self.person.getId()] = int(matches[2])
|
||||
except:
|
||||
pass
|
||||
elif matches[1] in ["AFN","CHAN","REFN","ASSO"]:
|
||||
self.ignore_sub_junk(2)
|
||||
elif matches[1] in ["ANCI","DESI","RIN","RFN"]:
|
||||
|
Loading…
Reference in New Issue
Block a user