diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/backend/branding.py | 2 | ||||
| -rw-r--r-- | bot/exts/backend/error_handler.py | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/backend/branding.py b/bot/exts/backend/branding.py index 268f5dd48..7ce85aab2 100644 --- a/bot/exts/backend/branding.py +++ b/bot/exts/backend/branding.py @@ -13,9 +13,9 @@ from discord.ext import commands  from bot.bot import Bot  from bot.constants import AssetType, Branding, Colours, Emojis, Guild, Keys, MODERATION_ROLES -from bot.seasons import SeasonBase, get_all_seasons, get_current_season, get_season  from bot.decorators import in_whitelist, mock_in_debug  from bot.errors import BrandingError +from bot.seasons import SeasonBase, get_all_seasons, get_current_season, get_season  log = logging.getLogger(__name__) diff --git a/bot/exts/backend/error_handler.py b/bot/exts/backend/error_handler.py index 6fb5bcf98..b6c19d504 100644 --- a/bot/exts/backend/error_handler.py +++ b/bot/exts/backend/error_handler.py @@ -11,7 +11,7 @@ from bot.api import ResponseCodeError  from bot.bot import Bot  from bot.constants import Channels, Colours, ERROR_REPLIES  from bot.converters import TagNameConverter -from bot.errors import LockedResourceError, BrandingError +from bot.errors import BrandingError, LockedResourceError  from bot.utils.checks import InWhitelistCheckFailure  log = logging.getLogger(__name__)  |