Skip to content

Commit

Permalink
fix deliver message
Browse files Browse the repository at this point in the history
  • Loading branch information
bralbral committed Apr 29, 2024
1 parent 7961bc8 commit 8113d9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bot/handlers/admins/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion src/constants.py
Original file line number Diff line number Diff line change
@@ -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")

Expand Down

0 comments on commit 8113d9a

Please sign in to comment.