fix character translation

svn: r5952
This commit is contained in:
Don Allingham 2006-02-17 22:40:42 +00:00
parent 807ed8f4f4
commit 0be2b36826
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2006-02-17 Don Allingham <don@gramps-project.org>
* src/GrampsDb/_ReadGedcom.py: fix character translation
2006-02-16 Don Allingham <don@gramps-project.org>
* src/GrampsDb/_GedTokens.py: fix constant table
* src/GrampsDb/_ReadGedcom.py: ALIA fix

View File

@ -397,7 +397,7 @@ class Reader:
try:
val = self.cnv(val)
except:
val = self.cnv(line[2].translate(val,self.transtable2))
val = self.cnv(val.translate(self.transtable2))
try:
level = int(line[0])