-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Closed
Description
from README.rst:
def unknown(bot, update):
bot.sendMessage(chat_id=update.message.chat_id, text="Sorry, I didn't understand that command.")
from telegram.ext import RegexHandler
unknown_handler = RegexHandler(r'/.*', unknown)
dispatcher.addHandler(unknown_handler)
i prefer:
def unknown(bot, update):
bot.sendMessage(chat_id=update.message.chat_id, text="Sorry, I didn't understand that command.")
dispatcher.addHandler(MessageHandler([Filters.command], unknown))
MatheusKProt
Metadata
Metadata
Assignees
Labels
No labels