David Hampton's merges for dialogs, fix merge traceback

svn: r426
This commit is contained in:
Don Allingham
2001-09-24 00:28:40 +00:00
parent 3b3bd4d002
commit fc70b6180b
22 changed files with 1112 additions and 1032 deletions

View File

@@ -20,6 +20,8 @@
import cStringIO
ANSEL_ERROR = "ANSEL Error"
_s1 = {
0xEA : { ord('A') : 0xC5, ord('a') : 0xE5 },
0xE8 : { ord('A') : 0xC4, ord('E') : 0xCB, ord('I') : 0xCF, ord('O') : 0xD6,
@@ -79,8 +81,6 @@ def ansel_to_latin(s):
try:
head,s = ansel_to_code(s)
except Exception:
from traceback import print_exc
print_exc()
head = s[0]
s = s[1:0]
buff.write(head)