diff options
author | MaZderMind <github@mazdermind.de> | 2014-08-01 19:34:18 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2014-08-01 19:34:18 +0200 |
commit | ba6e0a87244e5aed6100895bddf8d789eb1fb699 (patch) | |
tree | 872b6425920f83e2b5ac26f42f4ed06c39300079 /voctocore/controlserver.py | |
parent | a3dc11ae2d662701576dc4ee1ba6e91eba8785dc (diff) |
implement audio & video switchin commands
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): |