From 8df0b3888f685bf77a02188769cfcc8cb2feb00f Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 9 Dec 2003 20:46:40 +0000 Subject: [PATCH] Nicer error message. --- plugins/RSS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/RSS.py b/plugins/RSS.py index 3dc22efd6..a3b19d421 100644 --- a/plugins/RSS.py +++ b/plugins/RSS.py @@ -127,7 +127,7 @@ class RSS(callbacks.Privmsg): headlines = [utils.htmlToText(d['title'].strip()) for d in feed['items']] if not headlines: - irc.error(msg, 'Error grabbing RSS feed') + irc.error(msg, 'Couldn\'t get RSS feed') return headlines = imap(utils.htmlToText, headlines) irc.reply(msg, ' :: '.join(headlines))