* various: change try_to_find_*_from_handle to

get_*_from_handle


svn: r3355
This commit is contained in:
Don Allingham
2004-08-07 05:16:57 +00:00
parent cddd8ed8af
commit 082907d675
81 changed files with 660 additions and 623 deletions

View File

@ -164,7 +164,7 @@ class FtreeWriter:
id_map = {}
id_name = {}
for key in self.plist:
pn = self.db.get_person(key).get_primary_name()
pn = self.db.get_person_from_handle(key).get_primary_name()
fn = ""
sn = pn.get_surname()
items = pn.get_first_name().split()
@ -191,7 +191,7 @@ class FtreeWriter:
f = open(filename,"w")
for key in self.plist:
p = self.db.get_person(key)
p = self.db.get_person_from_handle(key)
name = id_name[key]
father = ""
mother = ""