changed loggable char range to include extended ascii. maybe that will help intl users.

nanotube [2005-11-23 08:30]
changed loggable char range to include extended ascii. maybe that will help intl users.
Filename
logwriter.py
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
ViewGit