src/irclib.py: fix typo causing an error on 904

This commit is contained in:
nyuszika7h 2014-08-30 11:28:47 +02:00
parent e6d80f9346
commit 18ccc168f5

View File

@ -1011,8 +1011,7 @@ class Irc(IrcCommandDispatcher):
def do904(self, msg):
if (self.sasl == 'external' and self.sasl_username and
self.sasl_password):
self.log.info('%s: SASL EXTERNAL failed, trying PLAIN.',
self.network)
log.info('%s: SASL EXTERNAL failed, trying PLAIN.', self.network)
self.sasl = 'plain'