From 8113d9ad977a83f38302c9f768946a38e02f5ddb Mon Sep 17 00:00:00 2001 From: bral bral Date: Mon, 29 Apr 2024 12:09:27 +0300 Subject: [PATCH] fix deliver message --- src/bot/handlers/admins/router.py | 2 +- src/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bot/handlers/admins/router.py b/src/bot/handlers/admins/router.py index 9226545..1a27bf5 100644 --- a/src/bot/handlers/admins/router.py +++ b/src/bot/handlers/admins/router.py @@ -70,7 +70,7 @@ async def reply_to_user( await message.reply(text=f"{errors.copy_message} {str(ex)}") finally: if successful_deliver: - await message.reply(text=messages.notify_user_about_success_deliver) + await message.reply(text=messages.notify_admin_about_success_answer) __all__ = ["router"] diff --git a/src/constants.py b/src/constants.py index 8572033..7463c3d 100644 --- a/src/constants.py +++ b/src/constants.py @@ -1,6 +1,6 @@ import os -VERSION: str = "2024-04-29.11" +VERSION: str = "2024-04-29.12" ROOT_DIR: str = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) CONFIG_FILE_PATH: str = os.path.join(ROOT_DIR, "config.yaml")