Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meeting.py2
-rw-r--r--plugin.py3
2 files changed, 3 insertions, 2 deletions
diff --git a/meeting.py b/meeting.py
index cc645cc..00ffb1f 100644
--- a/meeting.py
+++ b/meeting.py
@@ -237,7 +237,7 @@ class Meeting(MeetingCommands, object):
_lurk = False
_restrictlogs = False
def __init__(self, channel, owner, oldtopic=None,
- filename=None, writeRawLog=True):
+ filename=None, writeRawLog=False):
self.owner = owner
self.channel = channel
self.currenttopic = ""
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):