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/gpg | |
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/gpg')
-rw-r--r-- | plugins/gpg/__init__.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/gpg/__init__.py b/plugins/gpg/__init__.py index a60cbbdb..9fa8ee13 100644 --- a/plugins/gpg/__init__.py +++ b/plugins/gpg/__init__.py @@ -56,7 +56,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_command('gpg', self.command_gpg, "Usage: /gpg <force|disable|setkey> [JID] [keyid]\nGpg: Force or disable gpg encryption with the fulljid of the current conversation. The setkey argument lets you associate a keyid with the given bare JID.", self.gpg_completion) + self.add_tab_command(ConversationTab, 'gpg', self.command_gpg, + usage='<force|disable|setkey> [jid] [keyid]', + help='Force or disable gpg encryption with the fulljid of the current conversation. The setkey argument lets you associate a keyid with the given bare JID.', + short='Manage the GPG status', + completion=self.gpg_completion) ConversationTab.add_information_element('gpg', self.display_encryption_status) def cleanup(self): |