diff options
author | mathieui <mathieui@mathieui.net> | 2013-03-01 19:25:31 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-03-01 19:25:31 +0100 |
commit | e1956533a6e04d7ba2afdbc841b48804a84120b3 (patch) | |
tree | fc2e61bacc68adc9d0c5382a4797018db1223eab /plugins/send_delayed.py | |
parent | 43c93a0a1b84c87b587174c49753b036f42672cd (diff) | |
download | poezio-e1956533a6e04d7ba2afdbc841b48804a84120b3.tar.gz poezio-e1956533a6e04d7ba2afdbc841b48804a84120b3.tar.bz2 poezio-e1956533a6e04d7ba2afdbc841b48804a84120b3.tar.xz poezio-e1956533a6e04d7ba2afdbc841b48804a84120b3.zip |
Fix #2231 (update the plugins to use the new help system)
And fix some imprecisions/mistakes in the help.
Diffstat (limited to 'plugins/send_delayed.py')
-rw-r--r-- | plugins/send_delayed.py | 9 |
1 files changed, 6 insertions, 3 deletions
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 <delay> <message>\nSend Delayed: Send <message> with a delay of <delay> seconds.", self.completion_delay) - self.add_tab_command(tabs.MucTab, 'send_delayed', self.command_delayed, "Usage: /send_delayed <delay> <message>\nSend Delayed: Send <message> with a delay of <delay> seconds.", self.completion_delay) - self.add_tab_command(tabs.ConversationTab, 'send_delayed', self.command_delayed, "Usage: /send_delayed <delay> <message>\nSend Delayed: Send <message> with a delay of <delay> seconds.", self.completion_delay) + for _class in (tabs.PrivateTab, tabs.ConversationTab, tabs.MucTab): + self.add_tab_command(_class, 'send_delayed', self.command_delayed, + usage='<delay> <message>', + help='Send <message> with a delay of <delay> seconds.', + short='Send a message later', + completion=self.completion_delay) def command_delayed(self, arg): args = common.shell_split(arg) |