From 18ccc168f55968bd4a8899210753b791fbb83940 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Sat, 30 Aug 2014 11:28:47 +0200 Subject: [PATCH] src/irclib.py: fix typo causing an error on 904 --- src/irclib.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/irclib.py b/src/irclib.py index 89f85d197..7a1bc6e92 100644 --- a/src/irclib.py +++ b/src/irclib.py @@ -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'