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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin.py b/plugin.py
index f85368f..7291452 100644
--- a/plugin.py
+++ b/plugin.py
@@ -80,7 +80,8 @@ class MeetBot(callbacks.Plugin):
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)
+ oldtopic=irc.state.channels[channel].topic,
+ writeRawLog=True)
self.Meetings[Mkey] = M
# This callback is used to send data to the channel:
def _setTopic(x):