From aeecf352a736f61212522584bd96555befc703be Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 21 Sep 2004 21:18:37 +0000 Subject: [PATCH] Fixed bug #1029690. --- plugins/Google.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Google.py b/plugins/Google.py index 5ec5ca9f8..8f0d72697 100644 --- a/plugins/Google.py +++ b/plugins/Google.py @@ -231,7 +231,7 @@ class Google(callbacks.PrivmsgCommandAndRegexp): self.registryValue('colorfulFilter', msg.args[0]): s = msg.args[1] s = re.sub(self._googleRe, self._getColorGoogle, s) - msg = ircmsgs.privmsg(msg.args[0], s, prefix=msg.prefix) + msg = ircmsgs.privmsg(msg.args[0], s, msg=msg) return msg def formatData(self, data, bold=True, max=0):