0.3.2 - fixed a bug with missing + in replier

This commit is contained in:
miloszowi
2024-02-28 11:32:57 +01:00
parent e242584974
commit e44f4b75a5
2 changed files with 5 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ class Replier:
try:
update.effective_message.reply_markdown_v2(message, reply_markup=reply_markup)
except Exception as err:
Logger.error("replier.markdown error: "str(err))
Logger.error("replier.markdown error: " + str(err))
@staticmethod
def html(update: Update, html: str, reply_markup: Optional[InlineKeyboardMarkup] = None) -> None: