Update vcsaDriver.py

This commit is contained in:
chrys87 2017-07-21 11:03:05 +02:00 committed by GitHub
parent b935525a29
commit aad47d0746

View File

@ -222,7 +222,7 @@ class driver():
ch |= 0x100 ch |= 0x100
try: try:
lineText += self.charmap[ch] lineText += self.charmap[ch]
except: except KeyError:
lineText += chr('?') lineText += chr('?')
allText += lineText + '\n' allText += lineText + '\n'
allAttrib += lineAttrib allAttrib += lineAttrib