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/display_corrections.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'plugins/display_corrections.py') diff --git a/plugins/display_corrections.py b/plugins/display_corrections.py index 9937387f..6e122bfe 100644 --- a/plugins/display_corrections.py +++ b/plugins/display_corrections.py @@ -7,9 +7,12 @@ import tabs class Plugin(BasePlugin): def init(self): - usage = 'Usage: /display_corrections \nDisplay_corrections: display all the corrections of the number-th last corrected message.' for tab_type in (tabs.MucTab, tabs.PrivateTab, tabs.ConversationTab): - self.add_tab_command(tab_type, 'display_corrections', self.command_display_corrections, usage) + self.add_tab_command(tab_type, 'display_corrections', + handler=self.command_display_corrections, + usage='', + help='Display all the corrections of the number-th last corrected message.', + short='Display the corrections of a message') def find_corrected(self, nb): messages = self.core.get_conversation_messages() -- cgit v1.2.3