small fix

This commit is contained in:
Krzysztof Jagiello
2011-06-04 19:38:28 +02:00
parent 3831319f57
commit 15c8e3d87e

4
ts3.py
View File

@@ -37,8 +37,8 @@ class ConnectionError():
def __str__(): def __str__():
return 'Error connecting to host %s port %s' % (self.ip, self.port) return 'Error connecting to host %s port %s' % (self.ip, self.port)
ts3_escape = { '/': r"\/", ts3_escape = { "\\", r'\\',
"\\", r'\\', '/': r"\/",
' ': r'\s', ' ': r'\s',
'|': r'\p', '|': r'\p',
"\a": r'\a', "\a": r'\a',