fix bug in RSS.announce.list:

Because the 'channel' argument was declared optional, calling announce.list
off-channel without a channel argument caused an error.

Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
Daniel Folkinshteyn 2010-04-26 19:50:08 -04:00 committed by James Vega
parent 6135a88741
commit 40941e044a

View File

@ -337,7 +337,7 @@ class RSS(callbacks.Plugin):
announce = conf.supybot.plugins.RSS.announce
feeds = format('%L', list(announce.get(channel)()))
irc.reply(feeds or 'I am currently not announcing any feeds.')
list = wrap(list, [optional('channel')])
list = wrap(list, ['channel',])
def add(self, irc, msg, args, channel, feeds):
"""[<channel>] <name|url> [<name|url> ...]