* src/GrampsDb/_ReadGedcom.py: handle missing place in LDS ord
svn: r7921
This commit is contained in:
parent
e76a51da60
commit
17f22fc0c7
@ -1,4 +1,5 @@
|
||||
2007-01-16 Don Allingham <don@gramps-project.org>
|
||||
* src/GrampsDb/_ReadGedcom.py: handle missing place in LDS ord
|
||||
* src/DataViews/_PersonView.py: optimization
|
||||
* src/ViewManager.py: remove double build call
|
||||
* src/DisplayModels/_PeopleModel.py: optimization
|
||||
|
@ -1827,12 +1827,14 @@ class GedcomParser(UpdateCallback):
|
||||
def parse_ord(self,lds_ord,level):
|
||||
note = ""
|
||||
pf = _place_field
|
||||
place = None
|
||||
|
||||
while True:
|
||||
matches = self.get_next()
|
||||
|
||||
if self.level_is_finished(matches, level):
|
||||
load_place_values(place,place.get_title(),pf)
|
||||
if place:
|
||||
load_place_values(place,place.get_title(),pf)
|
||||
break
|
||||
elif matches[1] == TOKEN_TEMP:
|
||||
value = self.extract_temple(matches)
|
||||
|
Loading…
Reference in New Issue
Block a user