summaryrefslogtreecommitdiff
path: root/plugins/quote.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/quote.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/quote.py')
-rw-r--r--plugins/quote.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/plugins/quote.py b/plugins/quote.py
index 50c390f2..ebd9b15e 100644
--- a/plugins/quote.py
+++ b/plugins/quote.py
@@ -12,9 +12,12 @@ log = logging.getLogger(__name__)
class Plugin(BasePlugin):
def init(self):
- self.add_tab_command(tabs.MucTab, 'quote', self.command_quote, "Usage: /quote <timestamp>\nQuote: takes the message received at <timestamp> and insert it in the input, to quote it.", self.completion_quote)
- self.add_tab_command(tabs.ConversationTab, 'quote', self.command_quote, "Usage: /quote <timestamp>\nQuote: takes the message received at <timestamp> and insert it in the input, to quote it.", self.completion_quote)
- self.add_tab_command(tabs.PrivateTab, 'quote', self.command_quote, "Usage: /quote <timestamp>\nQuote: takes the message received at <timestamp> and insert it in the input, to quote it.", self.completion_quote)
+ for _class in (tabs.MucTab, tabs.ConversationTab, tabs.PrivateTab):
+ self.add_tab_command(_class, 'quote', self.command_quote,
+ usage='<timestamp>',
+ help='Takes the message received at <timestamp> and insert it in the input, to quote it.',
+ short='Quote a message from a timestamp',
+ completion=self.completion_quote)
def command_quote(self, args):
args = common.shell_split(args)