Update import to cope with missing place name and type
This commit is contained in:
parent
89dc89d83a
commit
3e3abbf3e1
@ -1150,8 +1150,9 @@ class GrampsParser(UpdateCallback):
|
||||
self.placeobj.private = bool(attrs.get("priv"))
|
||||
self.placeobj.change = int(attrs.get('change', self.change))
|
||||
if self.__xml_version >= (1, 6, 0):
|
||||
self.placeobj.name = attrs.get("name")
|
||||
self.placeobj.place_type.set_from_xml_str(attrs.get("type"))
|
||||
self.placeobj.name = attrs.get('name', '')
|
||||
if 'type' in attrs:
|
||||
self.placeobj.place_type.set_from_xml_str(attrs.get('type'))
|
||||
self.info.add('new-object', PLACE_KEY, self.placeobj)
|
||||
|
||||
# GRAMPS LEGACY: title in the placeobj tag
|
||||
|
Loading…
Reference in New Issue
Block a user