You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

16 lines
498 B

from tipbot import commands
from tipbot.helpers.utils import reply_user
def help(update, context):
cmds = list()
for i in commands.all_commands:
pk = commands.all_commands[i]
if not pk.get('admin', False):
cmds.append('{example} - {help}'.format(
example=pk['example'],
help=pk['help']
))
msg = 'Here are the available commands for this bot:\n\n' + '\n\n'.join(cmds)
reply_user(update.message, context, msg)