diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2024-12-12 14:37:09 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2024-12-12 14:37:38 +0000 |
commit | 3cecae2dfef3b831bfead3041c56dfcc0bbe3e1e (patch) | |
tree | 3a334af86d4d47a064f890c95f3a1d5a106013b1 | |
parent | d214c673b029cd89db3ebd1588a7f6ba58085591 (diff) | |
download | aps-cogs-main.tar aps-cogs-main.tar.gz aps-cogs-main.zip |
-rw-r--r-- | question_of_the_day/question_of_the_day.py | 2 |
1 files changed, 1 insertions, 1 deletions
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" ) |