aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/IRCChannels.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/IRCChannels.py b/src/IRCChannels.py
index 331706fa..5cbe4fa9 100644
--- a/src/IRCChannels.py
+++ b/src/IRCChannels.py
@@ -42,7 +42,8 @@ class Channels(object):
lower = self._name_lower(name)
new_channel = IRCChannel.Channel(lower, id, self._server, self._bot)
self._channels[lower] = new_channel
- self._events.on("new.channel").call(channel=new_channel, server=self)
+ self._events.on("new.channel").call(channel=new_channel,
+ server=self._server)
return new_channel
def remove(self, channel: IRCChannel.Channel):