From 34f5be525220dcaf9969cb50c4e1681552792fbe Mon Sep 17 00:00:00 2001 From: James Vega Date: Mon, 30 May 2005 02:27:16 +0000 Subject: [PATCH] RSS: Use del instead of pop. --- plugins/RSS/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/RSS/plugin.py b/plugins/RSS/plugin.py index c4284ada2..4c38b8ecd 100644 --- a/plugins/RSS/plugin.py +++ b/plugins/RSS/plugin.py @@ -307,7 +307,7 @@ class RSS(callbacks.Plugin): if name not in self.feedNames: irc.error('That\'s not a valid RSS feed command name.') return - self.feedNames.pop(name) + del self.feedNames[name] conf.supybot.plugins.RSS.feeds().remove(name) conf.supybot.plugins.RSS.feeds.unregister(name) irc.replySuccess()