aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/alias.py
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2019-12-13 09:57:53 +1000
committerGravatar GitHub <[email protected]>2019-12-13 09:57:53 +1000
commit854c7951bd84ea1234199073340da957b35e8dd5 (patch)
tree74569b82d99cf0c54089e480137a832f5cec5e62 /bot/cogs/alias.py
parentReddit: raise ClientError when the token can't be retrieved (diff)
parentDisplay time left until expiration of infraction (#679) (diff)
Merge branch 'master' into reddit-api-oauth
Diffstat (limited to '')
-rw-r--r--bot/cogs/alias.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py
index 5190c559b..c1db38462 100644
--- a/bot/cogs/alias.py
+++ b/bot/cogs/alias.py
@@ -3,8 +3,9 @@ import logging
from typing import Union
from discord import Colour, Embed, Member, User
-from discord.ext.commands import Bot, Cog, Command, Context, clean_content, command, group
+from discord.ext.commands import Cog, Command, Context, clean_content, command, group
+from bot.bot import Bot
from bot.cogs.extensions import Extension
from bot.cogs.watchchannels.watchchannel import proxy_user
from bot.converters import TagNameConverter
@@ -147,6 +148,5 @@ class Alias (Cog):
def setup(bot: Bot) -> None:
- """Alias cog load."""
+ """Load the Alias cog."""
bot.add_cog(Alias(bot))
- log.info("Cog loaded: Alias")