From 39c4d26832f4087093e5e02b9091f4d09260bd88 Mon Sep 17 00:00:00 2001 From: chrys Date: Sat, 12 Aug 2017 02:53:00 +0200 Subject: [PATCH] fix invalid type --- src/fenrir/screenDriver/vcsaDriver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrir/screenDriver/vcsaDriver.py b/src/fenrir/screenDriver/vcsaDriver.py index 384e9890..9bd847d7 100644 --- a/src/fenrir/screenDriver/vcsaDriver.py +++ b/src/fenrir/screenDriver/vcsaDriver.py @@ -228,7 +228,7 @@ class driver(): try: lineText += self.charmap[ch] except KeyError: - lineText += chr('?') + lineText += '?' lineAttrib.append((attr,ink, paper,0,0,0)) # attribute, ink, paper, blink, bold, underline allText += lineText + '\n' allAttrib += lineAttrib