fix invalid type

This commit is contained in:
chrys 2017-08-12 02:53:00 +02:00
parent d42663bafb
commit 39c4d26832

View File

@ -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