From 96a33a0f54a02ab3cd06517cb9215955220af4f9 Mon Sep 17 00:00:00 2001 From: Slava <69298864+HeySlava@users.noreply.github.com> Date: Sun, 9 Apr 2023 23:43:01 +0300 Subject: [PATCH] fix: show the actual config filename (#15) --- bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/bot.py b/bot/bot.py index 8d83cea..7ae6494 100644 --- a/bot/bot.py +++ b/bot/bot.py @@ -242,7 +242,7 @@ async def imagine_handle(update: Update, context: CallbackContext): """Generates an image according to the description.""" if not config.imagine: await update.message.reply_text( - "The `imagine` command is disabled. You can enable it in the `config.yml` file.", + f"The `imagine` command is disabled. You can enable it in the `{config.filename}` file.", parse_mode=ParseMode.MARKDOWN, ) return