From 5800756c87fad9814954d3aa1833833abfeaed77 Mon Sep 17 00:00:00 2001 From: urlbot Date: Thu, 5 Feb 2015 01:16:52 +0100 Subject: [PATCH] fix long info msg: moreinfo["command"->"help"] --- plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins.py b/plugins.py index 39cee7d..cbbf30f 100644 --- a/plugins.py +++ b/plugins.py @@ -378,7 +378,7 @@ def command_info(args): logger('plugin', 'sent long info') return { - 'msg': args['reply_user'] + (''': I'm a bot, my job is to extract tags from posted URLs. In case I'm annoying or for further questions, please talk to my master %s. I'm rate limited and shouldn't post more than %d messages per %d seconds. To make me exit immediately, highlight me with 'hangup' in the message (emergency only, please). For other commands, highlight me with 'command'.''' % (conf('bot_owner'), conf('hist_max_count'), conf('hist_max_time'))) + 'msg': args['reply_user'] + (''': I'm a bot, my job is to extract <title> tags from posted URLs. In case I'm annoying or for further questions, please talk to my master %s. I'm rate limited and shouldn't post more than %d messages per %d seconds. To make me exit immediately, highlight me with 'hangup' in the message (emergency only, please). For other commands, highlight me with 'help'.''' % (conf('bot_owner'), conf('hist_max_count'), conf('hist_max_time'))) } def command_teatimer(args):