summaryrefslogtreecommitdiff
path: root/plugins/display_corrections.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-03-01 19:25:31 +0100
committermathieui <mathieui@mathieui.net>2013-03-01 19:25:31 +0100
commite1956533a6e04d7ba2afdbc841b48804a84120b3 (patch)
treefc2e61bacc68adc9d0c5382a4797018db1223eab /plugins/display_corrections.py
parent43c93a0a1b84c87b587174c49753b036f42672cd (diff)
downloadpoezio-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/display_corrections.py')
-rw-r--r--plugins/display_corrections.py7
1 files changed, 5 insertions, 2 deletions
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 <number>\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='<number>',
+ 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()