From 7a235f032c99a60dd89ed29f3005fce5d2622f9b Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Fri, 22 Dec 2023 20:10:38 +0530 Subject: question_of_the_day: fix pluralization --- question_of_the_day/question_of_the_day.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'question_of_the_day') diff --git a/question_of_the_day/question_of_the_day.py b/question_of_the_day/question_of_the_day.py index be32869..9b4a4cc 100644 --- a/question_of_the_day/question_of_the_day.py +++ b/question_of_the_day/question_of_the_day.py @@ -339,7 +339,7 @@ class QuestionOfTheDay(commands.Cog): name="Question of the Day", icon_url=f"attachment://{ICON_PATH.name}", ) - footer = f"{questions_len - 1} questions left | " + footer = f"{questions_len - 1} question{'s' if questions_len > 2 else ''} left | " suggestions_count = len( await self.config.guild(guild).suggested_questions() ) -- cgit v1.2.3-57-g22cb