* src/ChooseParents.py: fix typo

* src/PedView.py: build child menu with IDs
* src/ReadGedcom.py: save birth/death events, handle FTM's broken
"_primary" junk


svn: r2936
This commit is contained in:
Don Allingham
2004-02-29 05:09:23 +00:00
parent b3f1f5ab0f
commit 62a25d797d
4 changed files with 13 additions and 5 deletions

View File

@@ -2356,7 +2356,9 @@ class GrampsDB:
def sort_person_keys(self):
if self.person_map:
return self.person_map.keys()
keys = self.person_map.keys()
keys.sort(self.sort_by_name)
return keys
else:
return []
# keys = self.person_map.keys()