mirror of
https://github.com/nikdoof/python-ts3.git
synced 2026-02-01 02:28:15 +00:00
a fix and new tests for parse_data
This commit is contained in:
@@ -214,7 +214,7 @@ class TS3Proto():
|
||||
if len(chunk) > 1:
|
||||
if len(chunk) > 2:
|
||||
# value can contain '=' which may confuse our parser
|
||||
chunk = [v[0], '='.join(v[1:])]
|
||||
chunk = [chunk[0], '='.join(chunk[1:])]
|
||||
|
||||
key, value = chunk
|
||||
parsed_data[key] = TS3Proto._unescape_str(value)
|
||||
|
||||
Reference in New Issue
Block a user