fix character translation
svn: r5952
This commit is contained in:
parent
807ed8f4f4
commit
0be2b36826
@ -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>
|
2006-02-16 Don Allingham <don@gramps-project.org>
|
||||||
* src/GrampsDb/_GedTokens.py: fix constant table
|
* src/GrampsDb/_GedTokens.py: fix constant table
|
||||||
* src/GrampsDb/_ReadGedcom.py: ALIA fix
|
* src/GrampsDb/_ReadGedcom.py: ALIA fix
|
||||||
|
@ -397,7 +397,7 @@ class Reader:
|
|||||||
try:
|
try:
|
||||||
val = self.cnv(val)
|
val = self.cnv(val)
|
||||||
except:
|
except:
|
||||||
val = self.cnv(line[2].translate(val,self.transtable2))
|
val = self.cnv(val.translate(self.transtable2))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
level = int(line[0])
|
level = int(line[0])
|
||||||
|
Loading…
Reference in New Issue
Block a user