aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar Joseph Banks <[email protected]>2018-12-26 11:18:10 +0000
committerGravatar Joseph Banks <[email protected]>2018-12-26 11:18:10 +0000
commit7aa3eb29e445c826e3683e11e12c477520aa7b11 (patch)
treea4f48b2bca42d8467c862ca1e0871074930864b0 /bot
parentAddress review comments (diff)
Fix the grammar on the message
Diffstat (limited to 'bot')
-rw-r--r--bot/seasons/christmas/adventofcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/christmas/adventofcode.py b/bot/seasons/christmas/adventofcode.py
index 261762fd..d45477a0 100644
--- a/bot/seasons/christmas/adventofcode.py
+++ b/bot/seasons/christmas/adventofcode.py
@@ -184,7 +184,7 @@ class AdventOfCode:
datetime_now = datetime.datetime.now(EST)
december_first = datetime.datetime(datetime_now.year + 1, 12, 1, tzinfo=EST)
delta = december_first - datetime_now
- await ctx.send(f"Advent of Code event is not currently running. The next event will start in {delta.days} days.")
+ await ctx.send(f"The Advent of Code event is not currently running. The next event will start in {delta.days} days.")
return
tomorrow, time_left = time_left_to_aoc_midnight()