diff options
author | 2019-03-25 14:44:13 +0000 | |
---|---|---|
committer | 2019-03-25 14:44:13 +0000 | |
commit | caa0d7673ae2212e0794b3a7349dde2ad58acbfc (patch) | |
tree | 54c7f1a117b20250dd0f0567cb7bc8b8a9687859 /bot | |
parent | Time Left - Fixed import order (diff) |
Time left - requested change
Co-Authored-By: Suhail6inkling <[email protected]>
Diffstat (limited to 'bot')
-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 cfb7ec79..2fc0fb76 100644 --- a/bot/seasons/halloween/timeleft.py +++ b/bot/seasons/halloween/timeleft.py @@ -19,7 +19,7 @@ class TimeLeft: """ checks that the current month is October """ - return datetime.now().month == 10 + return datetime.utcnow().month == 10 @staticmethod def load_date(): |