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.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/plugin.py b/plugin.py
index 4080e6d..a17e28a 100644
--- a/plugin.py
+++ b/plugin.py
@@ -90,19 +90,18 @@ class MeetBot(callbacks.Plugin):
if M is not None:
irc.error("Can't start another meeting, one is in progress.")
return
- M = meeting.Meeting(channel=channel, owner=nick,
- oldtopic=irc.state.channels[channel].topic,
- writeRawLog=True)
- meeting_cache[Mkey] = M
# This callback is used to send data to the channel:
def _setTopic(x):
irc.sendMsg(ircmsgs.topic(channel, x))
def _sendReply(x):
irc.sendMsg(ircmsgs.privmsg(channel, x))
- M._setTopic = _setTopic
- M._sendReply = _sendReply
- # callback to get supybot registry values.
- M._registryValue = self.registryValue
+ M = meeting.Meeting(channel=channel, owner=nick,
+ oldtopic=irc.state.channels[channel].topic,
+ writeRawLog=True,
+ setTopic = _setTopic, sendReply = _sendReply,
+ getRegistryValue = self.registryValue,
+ )
+ meeting_cache[Mkey] = M
recent_meetings.append(
(channel, irc.msg.tags['receivedOn'], time.ctime()))
if len(recent_meetings) > 10: