From ad7616bef66fd70a039be8b852cc0d0eeb764273 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 1 Feb 2024 20:06:21 -0500 Subject: [PATCH] fix(bible): go back to using title() --- bible/bible.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bible/bible.py b/bible/bible.py index dac929b..bf7328d 100644 --- a/bible/bible.py +++ b/bible/bible.py @@ -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"]):