src/plugins/ReadGedcom.py: Fixed typos preventing import
svn: r3216
This commit is contained in:
parent
d2e29dc8d4
commit
33246ec700
@ -1,3 +1,6 @@
|
|||||||
|
2004-06-18 Jason Salaz <whatsizbucket@users.sourceforge.net>
|
||||||
|
* src/plugins/ReadGedcom.py Fixed typos preventing import. (i.e. set_type instead of SetType, etc.)
|
||||||
|
|
||||||
2004-06-14 Don Allingham <dallingham@users.sourceforge.net>
|
2004-06-14 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
* src/RelLib.py: fix index for place map
|
* src/RelLib.py: fix index for place map
|
||||||
* src/FamilyView.py: include person ID's
|
* src/FamilyView.py: include person ID's
|
||||||
|
@ -871,9 +871,9 @@ class GedcomParser:
|
|||||||
pass
|
pass
|
||||||
elif matches[1] in ["AFN","RFN","_UID"]:
|
elif matches[1] in ["AFN","RFN","_UID"]:
|
||||||
attr = RelLib.Attribute()
|
attr = RelLib.Attribute()
|
||||||
attr.setType(matches[1])
|
attr.set_type(matches[1])
|
||||||
attr.setValue(matches[2])
|
attr.set_value(matches[2])
|
||||||
self.person.addAttribute(attr)
|
self.person.add_attribute(attr)
|
||||||
elif matches[1] in ["CHAN","ASSO","ANCI","DESI","RIN"]:
|
elif matches[1] in ["CHAN","ASSO","ANCI","DESI","RIN"]:
|
||||||
self.ignore_sub_junk(2)
|
self.ignore_sub_junk(2)
|
||||||
else:
|
else:
|
||||||
@ -1097,7 +1097,7 @@ class GedcomParser:
|
|||||||
elif matches[1] == "TEMP":
|
elif matches[1] == "TEMP":
|
||||||
value = extract_temple(matches)
|
value = extract_temple(matches)
|
||||||
if value:
|
if value:
|
||||||
ord.setTemple(value)
|
ord.set_temple(value)
|
||||||
elif matches[1] == "DATE":
|
elif matches[1] == "DATE":
|
||||||
ord.set_date_object(self.extract_date(matches[2]))
|
ord.set_date_object(self.extract_date(matches[2]))
|
||||||
elif matches[1] == "FAMC":
|
elif matches[1] == "FAMC":
|
||||||
|
Loading…
Reference in New Issue
Block a user