From ee7ca1668cb10accf25ec5d051313fe465c18724 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 19 Feb 2005 08:43:37 +0000 Subject: [PATCH] Fix for the new refactoring in callbacks. --- plugins/RSS/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/RSS/plugin.py b/plugins/RSS/plugin.py index ae2a55f83..ed3e4bf97 100644 --- a/plugins/RSS/plugin.py +++ b/plugins/RSS/plugin.py @@ -86,9 +86,9 @@ class RSS(callbacks.Plugin): feeds = self.registryValue('announce', channel) for name in feeds: commandName = callbacks.canonicalName(name) - if self.isCommand(commandName): + if self.isCommandMethod(commandName): name = commandName - url = self.getCommandMethod(name).url + url = getattr(self, name).url else: url = name if self.willGetNewFeed(url):