diff options
author | 2019-09-30 14:49:40 +0200 | |
---|---|---|
committer | 2019-09-30 14:49:40 +0200 | |
commit | 016ae59a5cbbf4f27bd93ed71e81580e9848d622 (patch) | |
tree | 740c8bd789e24ca22913caad26bcd5897cd6d270 | |
parent | Merge pull request #276 from python-discord/update-flake8-annotations (diff) | |
parent | Merge branch 'master' into date-fix (diff) |
Merge pull request #231 from Suhail6inkling/date-fix
Edit dates
-rw-r--r-- | bot/seasons/christmas/__init__.py | 2 | ||||
-rw-r--r-- | bot/seasons/halloween/__init__.py | 2 | ||||
-rw-r--r-- | bot/seasons/pride/__init__.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bot/seasons/christmas/__init__.py b/bot/seasons/christmas/__init__.py index 239181f4..ae93800e 100644 --- a/bot/seasons/christmas/__init__.py +++ b/bot/seasons/christmas/__init__.py @@ -18,7 +18,7 @@ class Christmas(SeasonBase): greeting = "Happy Holidays!" start_date = "01/12" - end_date = "31/12" + end_date = "01/01" colour = Colours.dark_green icon = ( diff --git a/bot/seasons/halloween/__init__.py b/bot/seasons/halloween/__init__.py index aff51423..e40e3dc9 100644 --- a/bot/seasons/halloween/__init__.py +++ b/bot/seasons/halloween/__init__.py @@ -10,7 +10,7 @@ class Halloween(SeasonBase): greeting = "Happy Halloween!" start_date = "01/10" - end_date = "31/10" + end_date = "01/11" colour = Colours.orange icon = ( diff --git a/bot/seasons/pride/__init__.py b/bot/seasons/pride/__init__.py index b1897eca..75e90b2a 100644 --- a/bot/seasons/pride/__init__.py +++ b/bot/seasons/pride/__init__.py @@ -27,7 +27,7 @@ class Pride(SeasonBase): # Duration of season start_date = "01/06" - end_date = "30/06" + end_date = "01/07" # Season logo colour = Colours.soft_red |