fix(bible): added documentation to the error message for Unauthorized

This commit is contained in:
Seaswimmer 2024-02-01 19:33:41 -05:00
parent ad0cd41be4
commit 44179ad42d
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -38,7 +38,8 @@ class Bible(commands.Cog):
if isinstance(err, bible.errors.Unauthorized): if isinstance(err, bible.errors.Unauthorized):
await ctx.send( await ctx.send(
error( error(
"The API key for API.bible is missing or invalid. Please report this to the bot owner." """The API key for API.bible is missing or invalid. Please report this to the bot owner.
If you are the bot owner, please check the documentation [here](https://seacogs.coastalcommits.com/bible/#setup)."""
) )
) )
if isinstance(err, bible.errors.BibleAccessError): if isinstance(err, bible.errors.BibleAccessError):