From 20eaf1c72bcec28b9d581360182342bdf0b67536 Mon Sep 17 00:00:00 2001 From: bakatrouble Date: Wed, 12 Feb 2020 20:24:53 +0300 Subject: [PATCH] fix --- bots/modules/ping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/modules/ping.py b/bots/modules/ping.py index 9ecf0db..b9e92dd 100644 --- a/bots/modules/ping.py +++ b/bots/modules/ping.py @@ -67,7 +67,7 @@ class PingBotModuleConfig(TelegramBotModuleConfig): for uid in cat.user_ids: member = ctx.bot.get_chat_member(update.effective_chat.id, uid) mentions.append(mention_html(uid, member.user.full_name)) - update.effective_message.reply_markdown(self.message_template.format(mentions=' '.join(mentions))) + update.effective_message.reply_html(self.message_template.format(mentions=' '.join(mentions))) def categories_handler(self, update: Update, ctx: CallbackContext): categories = []