aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2021-09-21 21:44:41 +0100
committerGravatar GitHub <[email protected]>2021-09-21 21:44:41 +0100
commit3e34debf2969864cff35ef264806e1ec1e40c0ff (patch)
treefcd741c77ec1b6c631400cf89dbf6fb4604d7e4c
parentMerge pull request #1838 from python-discord/remove-coveralls (diff)
parentAdd `cog` as an alias to extensions command (diff)
Merge pull request #1840 from python-discord/mbaruh-patch-1
Add `cog` as an alias to extensions command
-rw-r--r--bot/exts/utils/extensions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/extensions.py b/bot/exts/utils/extensions.py
index f78664527..309126d0e 100644
--- a/bot/exts/utils/extensions.py
+++ b/bot/exts/utils/extensions.py
@@ -36,7 +36,7 @@ class Extensions(commands.Cog):
def __init__(self, bot: Bot):
self.bot = bot
- @group(name="extensions", aliases=("ext", "exts", "c", "cogs"), invoke_without_command=True)
+ @group(name="extensions", aliases=("ext", "exts", "c", "cog", "cogs"), invoke_without_command=True)
async def extensions_group(self, ctx: Context) -> None:
"""Load, unload, reload, and list loaded extensions."""
await ctx.send_help(ctx.command)