From c5acd5cd38eab48224f93542d7b0a3f90da18aee Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 26 Nov 2015 22:43:37 -0800 Subject: [PATCH] coreplugin: uhhh, fix typo in irc.connected check --- coreplugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coreplugin.py b/coreplugin.py index be06dbe..078d6b4 100644 --- a/coreplugin.py +++ b/coreplugin.py @@ -271,7 +271,7 @@ def main(irc=None): # its job. if irc and not irc.connected.wait(2): log.warning('(%s) IRC network %s (protocol %s) has not set ' - 'irc.connected state after 2 seconds - this may be an ' - 'in the protocol module code, and will cause plugins like ' + 'irc.connected state after 2 seconds - this may be a bug ' + 'in the protocol module, and will cause plugins like ' 'relay to not work correctly!', irc.name, irc.name, irc.protoname)