* src/ReadGedcom.py (parse_record, parse_individual, parse_ord,

parse_adopt_event): Don't include "@" signs into family gramps id.
* src/PedView.py (find_tree): Correctly retrieve parents.


svn: r3465
This commit is contained in:
Alex Roitman
2004-08-21 20:43:34 +00:00
parent 9406b8fdcf
commit cb66941d56
3 changed files with 13 additions and 6 deletions

View File

@ -485,7 +485,11 @@ class PedigreeView:
if depth > 5 or person == None:
return
(family_handle,m,f) = person.get_main_parents_family_handle()
parent_families = person.get_parent_family_handle_list()
if parent_families:
(family_handle,m,f) = parent_families[0]
else:
return
if family_handle:
mrel = (m != "Birth")
frel = (f != "Birth")