corrected ascii code for horizontal tab

This commit is contained in:
Krzysztof Jagiello
2011-06-06 15:50:59 +02:00
committed by Andrew Williams
parent 726591ba8f
commit c77c71e746

View File

@@ -63,7 +63,7 @@ ts3_escape = [
(chr(12), r'\f'), # Formfeed
(chr(10), r'\n'), # Newline
(chr(13), r'\r'), # Carrage Return
(chr(3), r'\t'), # Horizontal Tab
(chr(9), r'\t'), # Horizontal Tab
(chr(11), r'\v'), # Vertical tab
]