diff options
| author | 2019-06-17 16:19:20 +0100 | |
|---|---|---|
| committer | 2019-06-17 16:19:20 +0100 | |
| commit | 5c325d9b238dd578b3989c104bfb57cde46875d0 (patch) | |
| tree | 894ec0e000737c5a20e0bba2f4f7f8d26ca15024 | |
| parent | Add a setting to disable "hard" sasl failure (diff) | |
'break' instead of 'continue' so that things in the event queue get discarded
| -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 637a8352..c7d37b06 100644 --- a/src/IRCBot.py +++ b/src/IRCBot.py @@ -272,7 +272,7 @@ class Bot(object): if not self.servers: self._kill() self.log.warn("No servers, exiting") - continue + break kill = False item = self._event_queue.get(block=True, timeout=None) |
