diff options
Diffstat (limited to 'voctocore/controlserver.py')
-rw-r--r-- | voctocore/controlserver.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/voctocore/controlserver.py b/voctocore/controlserver.py index beaa565..e11d6a8 100644 --- a/voctocore/controlserver.py +++ b/voctocore/controlserver.py @@ -47,8 +47,8 @@ class ControlServer(): def processLine(self, line): - command, argstring = (line+' ').split(' ', 1) - args = argstring.strip().split(' ') + command, argstring = (line.strip()+' ').split(' ', 1) + args = argstring.strip().split() print(command, args) if not hasattr(self.videomix, command): |