From f08a9ad2bb2ea5d540ce6378dd96711ac0400e87 Mon Sep 17 00:00:00 2001 From: nanotube Date: Wed, 23 Nov 2005 08:30:39 +0000 Subject: [PATCH] changed loggable char range to include extended ascii. maybe that will help intl users. --- logwriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logwriter.py b/logwriter.py index e6d897d..cdd630e 100644 --- a/logwriter.py +++ b/logwriter.py @@ -70,7 +70,7 @@ class LogWriter: return asciiSubset = [8,9,10,13,27] #backspace, tab, line feed, carriage return, escape - asciiSubset.extend(range(32,128)) #all normal printable chars + asciiSubset.extend(range(32,255)) #all normal printable chars if self.options.parseBackspace == True: asciiSubset.remove(8) #remove backspace from allowed chars if needed -- 2.45.1