RSS: fix mislocated decorator

This commit is contained in:
Valentin Lorentz 2010-10-26 09:27:09 +02:00
parent 007c58703f
commit 4aff05f361
1 changed files with 1 additions and 2 deletions

View File

@ -333,8 +333,8 @@ class RSS(callbacks.Plugin):
irc.replySuccess()
remove = wrap(remove, ['feedName'])
@internationalizeDocstring
class announce(callbacks.Commands):
@internationalizeDocstring
def list(self, irc, msg, args, channel):
"""[<channel>]
@ -442,7 +442,6 @@ class RSS(callbacks.Plugin):
irc.reply(utils.str.normalizeWhitespace(response))
info = wrap(info, [first('url', 'feedName')])
Class = RSS
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: