aboutsummaryrefslogtreecommitdiff
path: root/voctocore/controlserver.py
diff options
context:
space:
mode:
authorMaZderMind <github@mazdermind.de>2014-08-01 19:34:18 +0200
committerMaZderMind <github@mazdermind.de>2014-08-01 19:34:18 +0200
commitba6e0a87244e5aed6100895bddf8d789eb1fb699 (patch)
tree872b6425920f83e2b5ac26f42f4ed06c39300079 /voctocore/controlserver.py
parenta3dc11ae2d662701576dc4ee1ba6e91eba8785dc (diff)
implement audio & video switchin commands
Diffstat (limited to 'voctocore/controlserver.py')
-rw-r--r--voctocore/controlserver.py4
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):