diff options
| author | 2019-05-30 19:10:19 +0100 | |
|---|---|---|
| committer | 2019-05-30 19:10:19 +0100 | |
| commit | e37fa43952167ebc52b31ed6db96abe413a46231 (patch) | |
| tree | c11ed554a01f2d4a2ef08fcc2d134192d8c8dc87 /bot/seasons/season.py | |
| parent | Add a missing await to coroutine (diff) | |
| parent | Merge pull request #211 from RohanRadia/master (diff) | |
Merge remote-tracking branch 'python-discord/master' into pride-avatar
Diffstat (limited to 'bot/seasons/season.py')
| -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 6d992276..6d99b77f 100644 --- a/bot/seasons/season.py +++ b/bot/seasons/season.py @@ -442,7 +442,7 @@ class SeasonManager(commands.Cog):      async def refresh(self, ctx):          """Refreshes certain seasonal elements without reloading seasons."""          if not ctx.invoked_subcommand: -            await ctx.invoke(bot.get_command("help"), "refresh") +            await ctx.send_help(ctx.command)      @refresh.command(name="avatar")      async def refresh_avatar(self, ctx): | 
