diff options
| author | 2019-12-12 20:42:34 -0800 | |
|---|---|---|
| committer | 2019-12-12 20:42:34 -0800 | |
| commit | f21c1678830d727cca3719378e20be599afe2e0f (patch) | |
| tree | 67c0ba0155bf1c197956ab2a8fe5f4c2468744a5 /bot/cogs/alias.py | |
| parent | Moderation: show emoji for DM failure instead of mentioning actor (#534) (diff) | |
| parent | Merge pull request #692 from python-discord/enh/verification/688/allow-mods-cmds (diff) | |
Merge branch 'master' into enh/mod/534/no-ping-dm-fail
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/alias.py | 6 |
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") |