3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

coreplugin: uhhh, fix typo in irc.connected check

This commit is contained in:
James Lu 2015-11-26 22:43:37 -08:00
parent 994eaef12c
commit c5acd5cd38

View File

@ -271,7 +271,7 @@ def main(irc=None):
# its job. # its job.
if irc and not irc.connected.wait(2): if irc and not irc.connected.wait(2):
log.warning('(%s) IRC network %s (protocol %s) has not set ' log.warning('(%s) IRC network %s (protocol %s) has not set '
'irc.connected state after 2 seconds - this may be an ' 'irc.connected state after 2 seconds - this may be a bug '
'in the protocol module code, and will cause plugins like ' 'in the protocol module, and will cause plugins like '
'relay to not work correctly!', irc.name, irc.name, 'relay to not work correctly!', irc.name, irc.name,
irc.protoname) irc.protoname)