diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/IRCBot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCBot.py b/src/IRCBot.py index e2c5f899..6caf720b 100644 --- a/src/IRCBot.py +++ b/src/IRCBot.py @@ -49,7 +49,7 @@ class Bot(object): self.lock.release() self._trigger_client.send(b"TRIGGER") - type, returned = func_queue.get(True) + type, returned = func_queue.get(block=True) if type == TRIGGER_EXCEPTION: raise returned elif type == TRIGGER_RETURN: |
