bots: Strip leading whitespaces from bot queries.

This commit is contained in:
derAnfaenger 2017-05-23 04:01:04 +02:00 committed by Tim Abbott
parent 374c80d86a
commit 81cd41da17

View file

@ -88,7 +88,7 @@ def run_message_handler_for_bot(lib_module, quiet, config_file):
if start_with_mention is None:
return None
query_without_mention = message['content'][len(start_with_mention.group()):]
return query_without_mention
return query_without_mention.lstrip()
def is_private(message, client):
# bot will not reply if the sender name is the same as the bot name