diff options
author | 2020-09-15 11:19:31 +0700 | |
---|---|---|
committer | 2020-09-15 11:19:31 +0700 | |
commit | 58bf220e216b5568eea35f3bca9e1770dd9b1cc9 (patch) | |
tree | 93ab8a05a69e10f43a77b6606ed67fcf76c3abfa /bot/exts/christmas/adventofcode.py | |
parent | Apply suggestions from code review (diff) | |
parent | Merge pull request #435 from python-discord/topic-embeds (diff) |
Merge branch 'master' into master
Diffstat (limited to 'bot/exts/christmas/adventofcode.py')
-rw-r--r-- | bot/exts/christmas/adventofcode.py | 2 |
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: |