Skip to content

Commit

Permalink
fix: show the actual config filename (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
HeySlava authored Apr 9, 2023
1 parent f8fa901 commit 96a33a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 96a33a0

Please sign in to comment.