aboutsummaryrefslogtreecommitdiff
path: root/question_of_the_day/question_of_the_day.py
diff options
context:
space:
mode:
authorArjun Satarkar <me@arjunsatarkar.net>2023-12-22 14:40:38 +0000
committerArjun Satarkar <me@arjunsatarkar.net>2023-12-22 14:40:38 +0000
commit7a235f032c99a60dd89ed29f3005fce5d2622f9b (patch)
tree88cff0e60fe7acb17a10aed58ddebe9e5ca68fad /question_of_the_day/question_of_the_day.py
parenta8f3afc4d6608bf5d2b170ab22c83a2ee41fa664 (diff)
downloadaps-cogs-7a235f032c99a60dd89ed29f3005fce5d2622f9b.tar
aps-cogs-7a235f032c99a60dd89ed29f3005fce5d2622f9b.tar.gz
aps-cogs-7a235f032c99a60dd89ed29f3005fce5d2622f9b.zip
question_of_the_day: fix pluralization
Diffstat (limited to 'question_of_the_day/question_of_the_day.py')
-rw-r--r--question_of_the_day/question_of_the_day.py2
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 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()
)