diff options
author | 2020-03-28 15:22:06 +0100 | |
---|---|---|
committer | 2020-03-28 15:22:06 +0100 | |
commit | 1e8552bb6a7982bdc29363215712399746f417df (patch) | |
tree | cb975f2c39c80ce094b08074b674e96bcec839b5 /bot/exts/evergreen/branding.py | |
parent | Deseasonify: rename `seasons` pkg to `exts` (diff) |
Deseasonify: separate seasonal definitions into new module
Since the original `seasons` package is now called just `exts`,
it makes sense to migrate all season-specific definitions out into
a separate module.
This module now contains everything relating to 'new' seasons, i.e.
just branding tooling.
Diffstat (limited to 'bot/exts/evergreen/branding.py')
-rw-r--r-- | bot/exts/evergreen/branding.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/branding.py b/bot/exts/evergreen/branding.py index 6cbe3bd8..2eb563ea 100644 --- a/bot/exts/evergreen/branding.py +++ b/bot/exts/evergreen/branding.py @@ -12,7 +12,7 @@ from discord.ext import commands from bot.bot import SeasonalBot from bot.constants import Branding, Colours, Emojis, MODERATION_ROLES, Tokens -from bot.exts import SeasonBase, get_current_season, get_season +from bot.seasons import SeasonBase, get_current_season, get_season from bot.utils.decorators import with_role from bot.utils.exceptions import BrandingError |