aboutsummaryrefslogtreecommitdiff
path: root/IRCLineHandler.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-11 10:15:16 +0100
committerGravatar jesopo2018-09-11 10:15:16 +0100
commit80ec110640d9e8477e0cba05b90b6982cb1a15ca (patch)
tree3a585511d07ecd9d5bfa6c1a02af5c756b141b79 /IRCLineHandler.py
parentFix copypaste fail in Utils that meant we had no RFC1459_LOWER (diff)
Utils.irc_lower and Utils.irc_equals take an IRCServer parameter
Diffstat (limited to 'IRCLineHandler.py')
-rw-r--r--IRCLineHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/IRCLineHandler.py b/IRCLineHandler.py
index d7d47f54..944d19b1 100644
--- a/IRCLineHandler.py
+++ b/IRCLineHandler.py
@@ -560,7 +560,7 @@ class LineHandler(object):
# we need a registered nickname for this channel
def handle_477(self, event):
- channel_name = Utils.irc_lower(event["args"][1])
+ channel_name = Utils.irc_lower(event["server"], event["args"][1])
if channel_name in event["server"].attempted_join:
self.bot.add_timer("rejoin", 5,
channel_name=event["args"][1],