aboutsummaryrefslogtreecommitdiff
path: root/question_of_the_day
diff options
context:
space:
mode:
authorArjun Satarkar <me@arjunsatarkar.net>2024-09-08 12:33:23 +0000
committerArjun Satarkar <me@arjunsatarkar.net>2024-09-08 12:33:23 +0000
commit07a854081d937867a161211fee58b9a12750f8d4 (patch)
treee1203220e124fe34bfe4b47cc7deef36b1ee9b81 /question_of_the_day
parentde5bb689a1b04ccbcc367b775944a1389fa1692b (diff)
downloadaps-cogs-07a854081d937867a161211fee58b9a12750f8d4.tar
aps-cogs-07a854081d937867a161211fee58b9a12750f8d4.tar.gz
aps-cogs-07a854081d937867a161211fee58b9a12750f8d4.zip
question_of_the_day: fix pluralisationHEADmain
Diffstat (limited to 'question_of_the_day')
-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 1e0cbb8..8b8fa04 100644
--- a/question_of_the_day/question_of_the_day.py
+++ b/question_of_the_day/question_of_the_day.py
@@ -368,7 +368,7 @@ class QuestionOfTheDay(commands.Cog):
name="Question of the Day",
icon_url=f"attachment://{ICON_PATH.name}",
)
- footer = f"{questions_len - 1} question{'s' if questions_len > 2 else ''} left | "
+ footer = f"{questions_len - 1} question{'' if questions_len == 1 else 's'} left | "
suggestions_count = len(
await self.config.guild(guild).suggested_questions()
)