* src/RelLib.py: fix index for place map

* src/FamilyView.py: include person ID's


svn: r3212
This commit is contained in:
Don Allingham
2004-06-15 03:43:33 +00:00
parent 8341a65f75
commit c9a392961f
4 changed files with 25 additions and 12 deletions

View File

@ -3351,7 +3351,7 @@ class GrampsDB:
def get_place_display(self,key):
# fix this up better
place = Place()
place.unserialize(self.place_map[key])
place.unserialize(self.place_map[str(key)])
return place.get_display_info()
def get_source_keys(self):