fix invalid type
This commit is contained in:
parent
d42663bafb
commit
39c4d26832
@ -228,7 +228,7 @@ class driver():
|
|||||||
try:
|
try:
|
||||||
lineText += self.charmap[ch]
|
lineText += self.charmap[ch]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
lineText += chr('?')
|
lineText += '?'
|
||||||
lineAttrib.append((attr,ink, paper,0,0,0)) # attribute, ink, paper, blink, bold, underline
|
lineAttrib.append((attr,ink, paper,0,0,0)) # attribute, ink, paper, blink, bold, underline
|
||||||
allText += lineText + '\n'
|
allText += lineText + '\n'
|
||||||
allAttrib += lineAttrib
|
allAttrib += lineAttrib
|
||||||
|
Loading…
Reference in New Issue
Block a user