From 61e46c5049c2cdf3c78974f2dacb445a763d0158 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 6 Feb 2004 09:18:52 +0000 Subject: [PATCH] Try to fix target and prefixing of name. --- plugins/RSS.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/RSS.py b/plugins/RSS.py index 13bb2f88d..429b6e3c0 100644 --- a/plugins/RSS.py +++ b/plugins/RSS.py @@ -132,7 +132,8 @@ class RSS(callbacks.Privmsg): pre = '%s%s ' % (prefix, name) if bold: pre = ircutils.bold(pre) - irc.replies(newheadlines, prefixer=pre, joiner=sep) + irc.replies(newheadlines, prefixer=pre, joiner=sep, + to=channel, prefixName=False) def getFeed(self, url): now = time.time()