[V3 Alias] Fix missing await (#1805)

This commit is contained in:
Will 2018-06-07 00:53:12 -04:00 committed by Tobotimus
parent 60a72b2ba4
commit 36b9f64aae

View File

@ -287,7 +287,7 @@ class Alias:
@commands.guild_only()
async def _help_alias(self, ctx: commands.Context, alias_name: str):
"""Tries to execute help for the base command of the alias"""
is_alias, alias = self.is_alias(ctx.guild, alias_name=alias_name)
is_alias, alias = await self.is_alias(ctx.guild, alias_name=alias_name)
if is_alias:
base_cmd = alias.command[0]