diff options
Diffstat (limited to 'plugins/otr.py')
-rw-r--r-- | plugins/otr.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/otr.py b/plugins/otr.py index 51e9a8d4..f3a1d7a2 100644 --- a/plugins/otr.py +++ b/plugins/otr.py @@ -16,7 +16,11 @@ class Plugin(BasePlugin): self.add_event_handler('conversation_say_after', self.on_conversation_say) self.add_event_handler('conversation_msg', self.on_conversation_msg) - self.add_tab_command(ConversationTab, 'otr', self.command_otr, "Usage: /otr <start|end>\notr: Start or stop OTR for the current conversation", self.otr_completion) + self.add_tab_command(ConversationTab, 'otr', self.command_otr, + usage='<start|end|fpr>', + help='Start or stop OTR for the current conversation.', + short='Manage OTR status', + completion=self.otr_completion) ConversationTab.add_information_element('otr', self.display_encryption_status) def cleanup(self): |