aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/christmas/adventofcode.py
diff options
context:
space:
mode:
authorGravatar Kieran Siek <[email protected]>2020-09-18 23:01:42 +0800
committerGravatar GitHub <[email protected]>2020-09-18 23:01:42 +0800
commit636cda284a5a2c2f51a17e87c8b71c0f6edcfb22 (patch)
tree3523b6eb11f5d752f9060dfba18dbd68a14ac1b0 /bot/exts/christmas/adventofcode.py
parentFix typo in casercipher help. (diff)
parentMerge pull request #442 from python-discord/reddit-command-fix (diff)
Merge branch 'master' into caesar-command
Diffstat (limited to 'bot/exts/christmas/adventofcode.py')
-rw-r--r--bot/exts/christmas/adventofcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/christmas/adventofcode.py b/bot/exts/christmas/adventofcode.py
index 00607074..b3fe0623 100644
--- a/bot/exts/christmas/adventofcode.py
+++ b/bot/exts/christmas/adventofcode.py
@@ -58,7 +58,7 @@ async def countdown_status(bot: commands.Bot) -> None:
hours, minutes = aligned_seconds // 3600, aligned_seconds // 60 % 60
if aligned_seconds == 0:
- playing = f"right now!"
+ playing = "right now!"
elif aligned_seconds == COUNTDOWN_STEP:
playing = f"in less than {minutes} minutes"
elif hours == 0: