fix(bible): go back to using title()
This commit is contained in:
parent
8883f68cf0
commit
ad7616bef6
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class Bible(commands.Cog):
|
|||
book_name_list = book_name.split()
|
||||
for w in book_name_list:
|
||||
book_name_list.remove(w)
|
||||
book_name_list.append(w if w.lower() == "of" else w.capitalize())
|
||||
book_name_list.append(w if w.lower() == "of" else w.title())
|
||||
books = await self._get_books(bible_id)
|
||||
for book in books:
|
||||
if book_name in (book["abbreviation"], book["name"]):
|
||||
|
|
Loading…
Reference in a new issue