From 3cecae2dfef3b831bfead3041c56dfcc0bbe3e1e Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Thu, 12 Dec 2024 09:37:09 -0500 Subject: question_of_the_day: and fix pluralisation elsewhere too --- question_of_the_day/question_of_the_day.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/question_of_the_day/question_of_the_day.py b/question_of_the_day/question_of_the_day.py index b812e81..42fb9b2 100644 --- a/question_of_the_day/question_of_the_day.py +++ b/question_of_the_day/question_of_the_day.py @@ -374,7 +374,7 @@ class QuestionOfTheDay(commands.Cog): await self.config.guild(guild).suggested_questions() ) footer += ( - f"{suggestions_count} suggestion{'s' if suggestions_count > 1 else ''}" + f"{suggestions_count} suggestion{'' if suggestions_count == 1 else 's'}" if suggestions_count else "no suggestions yet! use qotd suggest" ) -- cgit v1.2.3-57-g22cb