diff options
| author | 2020-09-24 17:47:50 +0800 | |
|---|---|---|
| committer | 2020-09-24 17:47:50 +0800 | |
| commit | abbb62a0720f68cbd0a0226f4abeb9c3b337de3c (patch) | |
| tree | 6ee31b18415958b70d92bd3eda644d55a6ab3b53 | |
| parent | Fix unawaited coroutine (diff) | |
Add "a" alias for append
| -rw-r--r-- | bot/exts/moderation/infraction/management.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/moderation/infraction/management.py b/bot/exts/moderation/infraction/management.py index e35ebcbef..78dc16b23 100644 --- a/bot/exts/moderation/infraction/management.py +++ b/bot/exts/moderation/infraction/management.py @@ -45,7 +45,7 @@ class ModManagement(commands.Cog):          """Infraction manipulation commands."""          await ctx.send_help(ctx.command) -    @infraction_group.command(name="append", aliases=("amend", "add")) +    @infraction_group.command(name="append", aliases=("amend", "add", "a"))      async def infraction_append(          self,          ctx: Context, | 
