I think the issue may be with escaping the whitespace in group names. If
this is the case, I'll have to tweak the code in ts3.py
This commit is contained in:
Brett Costabile 2015-11-01 18:06:35 -05:00
parent 2eb0bd5221
commit 621de341a8

View File

@ -61,6 +61,8 @@ class TS3Proto():
cmd = self.construct_command(command, keys=keys, opts=opts)
self.send('%s\n' % cmd)
print("Command to be sent: {0}").format(cmd)
data = []
while True: