diff options
| author | 2019-12-03 22:17:55 -0800 | |
|---|---|---|
| committer | 2019-12-03 22:17:55 -0800 | |
| commit | 8e21889d68be318c662a464ecaaeaf0bc1864424 (patch) | |
| tree | 15dc5c0860b2180d682f096df061360f468a5897 /bot/seasons/halloween/timeleft.py | |
| parent | Readd user agent to request header (diff) | |
| parent | Merge pull request #308 from python-discord/dependabot/pip/pillow-6.2.0 (diff) | |
Merge branch 'master' into exclude-draft-prs
Diffstat (limited to 'bot/seasons/halloween/timeleft.py')
| -rw-r--r-- | bot/seasons/halloween/timeleft.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/halloween/timeleft.py b/bot/seasons/halloween/timeleft.py index 77767baa..8cb3f4f6 100644 --- a/bot/seasons/halloween/timeleft.py +++ b/bot/seasons/halloween/timeleft.py @@ -25,7 +25,7 @@ class TimeLeft(commands.Cog): year = now.year if now.month > 10: year += 1 - end = datetime(year, 10, 31, 11, 59, 59) + end = datetime(year, 11, 1, 11, 59, 59) start = datetime(year, 10, 1) return now, end, start |