aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/christmas/adventofcode.py
diff options
context:
space:
mode:
authorGravatar Dennis Pham <[email protected]>2020-07-14 22:32:09 -0400
committerGravatar GitHub <[email protected]>2020-07-14 22:32:09 -0400
commitb297304c8d79f0241bb044aa5d54e648c42e8f71 (patch)
tree44e461c44d0aa1830bb44f60d3fa6c378be3e14d /bot/exts/christmas/adventofcode.py
parentRemoved logging, added more explicit error catching.. (diff)
parentInstall git in Docker image (diff)
Merge branch 'master' into statuscats
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: