mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-13 06:20:16 +02:00
Merge pull request #84 from Adarnof/ts3hotfix
Corrects string index out of range exception when handling certain TS3 commands
This commit is contained in:
commit
05884095a9
@ -139,7 +139,8 @@ class TS3Proto():
|
||||
v = [v[0], '='.join(v[1:])]
|
||||
key, value = v
|
||||
keys[key] = self._unescape_str(value)
|
||||
elif v[0][0] and v[0][0] == '-':
|
||||
elif (not v == ['']):
|
||||
if v[0][0] and v[0][0] == '-':
|
||||
# Option
|
||||
opts.append(v[0][1:])
|
||||
else:
|
||||
|
Loading…
x
Reference in New Issue
Block a user