From 97dbedaa549d0275333d468eebdb979cdefac2c5 Mon Sep 17 00:00:00 2001 From: Badiboy Date: Mon, 7 Feb 2022 00:57:33 +0300 Subject: [PATCH] Fix > --- telebot/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telebot/util.py b/telebot/util.py index 6c09ca3..24f6b55 100644 --- a/telebot/util.py +++ b/telebot/util.py @@ -320,7 +320,7 @@ def escape(text: str) -> str: :param text: the text to escape :return: the escaped text """ - chars = {"&": "&", "<": "<", ">": ">"} + chars = {"&": "&", "<": "<", ">": ">"} for old, new in chars.items(): text = text.replace(old, new) return text