Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugin.py')
-rw-r--r--plugin.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugin.py b/plugin.py
index c1b3518..9b003b0 100644
--- a/plugin.py
+++ b/plugin.py
@@ -98,12 +98,14 @@ class MeetBot(callbacks.Plugin):
irc.sendMsg(ircmsgs.topic(channel, x))
def _sendReply(x):
irc.sendMsg(ircmsgs.privmsg(channel, x))
+ def _channelNicks():
+ return irc.state.channels[channel].users
M = meeting.Meeting(channel=channel, owner=nick,
oldtopic=irc.state.channels[channel].topic,
writeRawLog=True,
setTopic = _setTopic, sendReply = _sendReply,
getRegistryValue = self.registryValue,
- safeMode=True
+ safeMode=True, channelNicks=_channelNicks,
)
meeting_cache[Mkey] = M
recent_meetings.append(