From c77c71e746887ae09a06425e98891db5c8c91f29 Mon Sep 17 00:00:00 2001 From: Krzysztof Jagiello Date: Mon, 6 Jun 2011 15:50:59 +0200 Subject: [PATCH] corrected ascii code for horizontal tab --- ts3/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts3/__init__.py b/ts3/__init__.py index d586cc1..3e0acbe 100644 --- a/ts3/__init__.py +++ b/ts3/__init__.py @@ -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 ]