diff options
author | 2024-02-11 16:43:03 +0000 | |
---|---|---|
committer | 2024-05-23 21:50:16 +0100 | |
commit | 54507fc0762f8daf0b6b0b6ef7d6ee5c94e97de2 (patch) | |
tree | 0f43706401b3555a5f39bba593cee48ba63894db | |
parent | Output user alts in user command when ran in mod channels (diff) |
Remove space after subcommand name which meant it couldn't be called
-rw-r--r-- | bot/exts/moderation/alts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/alts.py b/bot/exts/moderation/alts.py index 57d67d2d2..bdee76c94 100644 --- a/bot/exts/moderation/alts.py +++ b/bot/exts/moderation/alts.py @@ -88,7 +88,7 @@ class AlternateAccounts(commands.Cog): return await ctx.send(f"✅ {user_1.mention} and {user_2.mention} successfully marked as alts.") - @association_group.command(name="edit ", aliases=("e",)) + @association_group.command(name="edit", aliases=("e",)) async def edit_association_command( self, ctx: commands.Context, |