aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--voctocore/lib/controlserver.py2
-rw-r--r--voctogui/lib/connection.py2
2 files changed, 2 insertions, 2 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:]
diff --git a/voctogui/lib/connection.py b/voctogui/lib/connection.py
index bc8b867..2a6aaf5 100644
--- a/voctogui/lib/connection.py
+++ b/voctogui/lib/connection.py
@@ -108,7 +108,7 @@ def on_loop():
words = line.split()
if len(words) < 1:
log.debug('command_queue is empty again, stopping on_loop scheduling')
- return False
+ return True
signal = words[0]
args = words[1:]