From 5acfd65090b328c100adf7f32c3335c1dcb29606 Mon Sep 17 00:00:00 2001 From: Richard Darst Date: Wed, 27 May 2009 23:01:51 +0000 Subject: default to not writing rawlog in Meeting object - When a meeting is logged via IRC, it *is* still logged, just for other uses it might not be. This is a better default, since otherwise we'll be replaying log files and don't want to risk overwriting them. darcs-hash:20090527230151-82ea9-d5af3055b20632fa81ed5b7d0b36e19a32f280d6.gz --- (limited to 'plugin.py') 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): -- cgit v0.9.1