From 6f336f297eb1c800c5a8caa372debfb77607f2e4 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 14 Jun 2004 06:14:37 +0000 Subject: [PATCH] Possible fix for the dumb bug from dumb servers who put dumb dots in the dumb channels's dumb name. --- plugins/ChannelLogger.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/ChannelLogger.py b/plugins/ChannelLogger.py index 0c6d2ca55..af7cad717 100644 --- a/plugins/ChannelLogger.py +++ b/plugins/ChannelLogger.py @@ -166,6 +166,7 @@ class ChannelLogger(callbacks.Privmsg): log.write(' ') def normalizeChannel(self, irc, channel): + channel = channel.replace('.', ',') if self.registryValue('includeNetworkName', channel): channel = '%s@%s' % (channel, irc.network) return ircutils.toLower(channel)