diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b7e246..8f91702 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Change Log All notable changes to this project will be documented in this file. - + +## [0.3.2] - 28.02.2023 +### Changed +- fixed bug with missing '+' in replier ## [0.3.1] - 28.02.2023 ### Changed - fixed markdown replier to respect restricted characters provided in the [api docs](https://core.telegram.org/bots/api#markdownv2-style) diff --git a/src/bot/message/replier.py b/src/bot/message/replier.py index 69fba47..e6af939 100644 --- a/src/bot/message/replier.py +++ b/src/bot/message/replier.py @@ -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: