From e1956533a6e04d7ba2afdbc841b48804a84120b3 Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 1 Mar 2013 19:25:31 +0100 Subject: Fix #2231 (update the plugins to use the new help system) And fix some imprecisions/mistakes in the help. --- plugins/quote.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'plugins/quote.py') diff --git a/plugins/quote.py b/plugins/quote.py index 50c390f2..ebd9b15e 100644 --- a/plugins/quote.py +++ b/plugins/quote.py @@ -12,9 +12,12 @@ log = logging.getLogger(__name__) class Plugin(BasePlugin): def init(self): - self.add_tab_command(tabs.MucTab, 'quote', self.command_quote, "Usage: /quote \nQuote: takes the message received at and insert it in the input, to quote it.", self.completion_quote) - self.add_tab_command(tabs.ConversationTab, 'quote', self.command_quote, "Usage: /quote \nQuote: takes the message received at and insert it in the input, to quote it.", self.completion_quote) - self.add_tab_command(tabs.PrivateTab, 'quote', self.command_quote, "Usage: /quote \nQuote: takes the message received at and insert it in the input, to quote it.", self.completion_quote) + for _class in (tabs.MucTab, tabs.ConversationTab, tabs.PrivateTab): + self.add_tab_command(_class, 'quote', self.command_quote, + usage='', + help='Takes the message received at and insert it in the input, to quote it.', + short='Quote a message from a timestamp', + completion=self.completion_quote) def command_quote(self, args): args = common.shell_split(args) -- cgit v1.2.3