Fixed unicode mapping problem with python 2.0

svn: r170
This commit is contained in:
Don Allingham
2001-06-21 19:31:12 +00:00
parent 27c1d09f66
commit 434c78203b
10 changed files with 118 additions and 104 deletions

View File

@ -1283,7 +1283,7 @@ class GedcomParser:
self.backup()
return
elif matches[1] == "ADDR":
addr.label = matches[2]
addr.label = matches[2] + self.parse_continue_data(level+1)
self.parse_sub_addr(level+1, addr)
elif matches[1] == "PHON":
addr.phone = matches[2]