diff options
author | MaZderMind <git@mazdermind.de> | 2016-01-10 11:18:58 +0100 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2016-01-10 11:21:34 +0100 |
commit | fd5a9c94892e0a890b6e0702c745e50e48f16f23 (patch) | |
tree | 6045e0341ee31175e9da610239e2f4f17d83ea22 /voctocore | |
parent | c0fe1f098340d65706a49d64f166fa568bbbedb3 (diff) |
don't stop scheduling on_loop in case of an input error, #43
Diffstat (limited to 'voctocore')
-rw-r--r-- | voctocore/lib/controlserver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/voctocore/lib/controlserver.py b/voctocore/lib/controlserver.py index 2f25ca6..2dc6e1c 100644 --- a/voctocore/lib/controlserver.py +++ b/voctocore/lib/controlserver.py @@ -86,7 +86,7 @@ class ControlServer(TCPMultiConnection): words = line.split() if len(words) < 1: self.log.debug('command_queue is empty again, stopping on_loop scheduling') - return False + return True command = words[0] args = words[1:] |