fix(bible): fixed incorrect method call
Some checks failed
Actions / Lint Code (Pylint) (push) Failing after 15s
Actions / Build Documentation (MkDocs) (push) Successful in 10s

This commit is contained in:
SeaswimmerTheFsh 2024-02-01 18:00:22 -05:00
parent ad32a0fa67
commit bf700f138c
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -65,5 +65,5 @@ class Bible(commands.Cog):
except ValueError as e:
await ctx.send(str(e))
return
passage = await self._get_verse(bible_id, book_id, chapter, verse)
passage = await self._get_passage(bible_id, f"{book_id}.{chapter}.{verse}")
await ctx.send(passage["content"])