diff options
author | 2024-05-23 22:14:17 +0100 | |
---|---|---|
committer | 2024-05-23 22:14:17 +0100 | |
commit | 64de0b04511543b519fe6f2190e6ce27082b3ef2 (patch) | |
tree | 5bc5871ecde154ebdb66d6025c6dac1985e727f2 | |
parent | Allow listing alts for a user via the alts root alias (#3072) (diff) |
Remove space from command name
-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 8fdf152a6..51f55b807 100644 --- a/bot/exts/moderation/alts.py +++ b/bot/exts/moderation/alts.py @@ -58,7 +58,7 @@ class AlternateAccounts(commands.Cog): ) return lines - @commands.group(name="association ", aliases=("alt", "assoc"), invoke_without_command=True) + @commands.group(name="association", aliases=("alt", "assoc"), invoke_without_command=True) async def association_group( self, ctx: commands.Context, |