mirror of
https://github.com/nikdoof/python-ts3.git
synced 2025-12-17 11:59:27 +00:00
corrected ascii code for horizontal tab
This commit is contained in:
@@ -63,7 +63,7 @@ ts3_escape = [
|
|||||||
(chr(12), r'\f'), # Formfeed
|
(chr(12), r'\f'), # Formfeed
|
||||||
(chr(10), r'\n'), # Newline
|
(chr(10), r'\n'), # Newline
|
||||||
(chr(13), r'\r'), # Carrage Return
|
(chr(13), r'\r'), # Carrage Return
|
||||||
(chr(3), r'\t'), # Horizontal Tab
|
(chr(9), r'\t'), # Horizontal Tab
|
||||||
(chr(11), r'\v'), # Vertical tab
|
(chr(11), r'\v'), # Vertical tab
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user