From e2149dc6d6b887224c12c57013b28aad2d5720d2 Mon Sep 17 00:00:00 2001 From: urlbot Date: Wed, 20 Aug 2014 03:18:44 +0200 Subject: [PATCH] "info" now points to "command" overview --- eventlooper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eventlooper.py b/eventlooper.py index 17ecedf..543dffb 100755 --- a/eventlooper.py +++ b/eventlooper.py @@ -224,7 +224,7 @@ def parse_commands(data): chat_write(reply_user + ''': pong''') logger('info', 'sent pong') elif 'info' in data: - chat_write(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 Cae. 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).''' %(hist_max_count, hist_max_time))) + chat_write(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 Cae. 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'.''' %(hist_max_count, hist_max_time))) logger('info', 'sent long info') else: chat_write(reply_user + (''': I'm a bot (highlight me with 'info' for more information).'''))