Update command_handler.py

This commit is contained in:
Katya Demidova 2016-11-12 01:59:03 +03:00 committed by GitHub
parent 249a8af0b9
commit d06e399e82
1 changed files with 7 additions and 5 deletions

View File

@ -60,11 +60,13 @@ class CommandHandler(Handler):
def __help_command(self, update, args):
update.message.reply_text("""Available commands:
/ping,
/get_stats: get information on how many pairs are known by ImaginaryFriend,
/set_chance: set the probability that ImaginaryFriend would reply to a random message (must be in range 1-50, default: 5),
/get_chance: get current probability that ImaginaryFriend would reply to a message.')""")
update.message.reply_text(
"""Available commands:
/ping,
/get_stats: get information on how many pairs are known by ImaginaryFriend,
/set_chance: set the probability that ImaginaryFriend would reply to a random message (must be in range 1-50, default: 5),
/get_chance: get current probability that ImaginaryFriend would reply to a message.')"""
)
def __ping_command(self, update, args):