From 7abacb000bc0c1bde6a9ab7c477c9c28bc44aa1d Mon Sep 17 00:00:00 2001 From: Harshil <37377066+harshil21@users.noreply.github.com> Date: Mon, 29 Mar 2021 13:16:22 +0400 Subject: [PATCH] Fix echobot.py Example (#2448) --- examples/echobot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/echobot.py b/examples/echobot.py index d5a058ae4..29fca22cd 100644 --- a/examples/echobot.py +++ b/examples/echobot.py @@ -34,7 +34,7 @@ def start(update: Update, _: CallbackContext) -> None: """Send a message when the command /start is issued.""" user = update.effective_user update.message.reply_markdown_v2( - f'Hi {user.mention_markdown_v2()}!', + f'Hi {user.mention_markdown_v2()}\!', reply_markup=ForceReply(selective=True), )