diff options
author | 2018-12-01 01:36:57 +0000 | |
---|---|---|
committer | 2018-12-01 01:36:57 +0000 | |
commit | 31dc4d02221dbfd232b9676383c555f0b08b4d9e (patch) | |
tree | 828f534a5de36f0d58945a95785b53d1f250016b | |
parent | Empty commit to redeploy (diff) |
Change name arg into name kwarg to match other usages
-rw-r--r-- | bot/seasons/season.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/season.py b/bot/seasons/season.py index 5ab364c5..591bbc2d 100644 --- a/bot/seasons/season.py +++ b/bot/seasons/season.py @@ -166,7 +166,7 @@ class SeasonManager: await self.season.load() @with_role(Roles.moderator, Roles.admin, Roles.owner) - @commands.command('season') + @commands.command(name='season') async def change_season(self, ctx, new_season: str): """ Changes the currently active season on the bot. |