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/send_delayed.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'plugins/send_delayed.py') diff --git a/plugins/send_delayed.py b/plugins/send_delayed.py index 61d2d397..253bb027 100644 --- a/plugins/send_delayed.py +++ b/plugins/send_delayed.py @@ -6,9 +6,12 @@ import timed_events class Plugin(BasePlugin): def init(self): - self.add_tab_command(tabs.PrivateTab, 'send_delayed', self.command_delayed, "Usage: /send_delayed \nSend Delayed: Send with a delay of seconds.", self.completion_delay) - self.add_tab_command(tabs.MucTab, 'send_delayed', self.command_delayed, "Usage: /send_delayed \nSend Delayed: Send with a delay of seconds.", self.completion_delay) - self.add_tab_command(tabs.ConversationTab, 'send_delayed', self.command_delayed, "Usage: /send_delayed \nSend Delayed: Send with a delay of seconds.", self.completion_delay) + for _class in (tabs.PrivateTab, tabs.ConversationTab, tabs.MucTab): + self.add_tab_command(_class, 'send_delayed', self.command_delayed, + usage=' ', + help='Send with a delay of seconds.', + short='Send a message later', + completion=self.completion_delay) def command_delayed(self, arg): args = common.shell_split(arg) -- cgit v1.2.3