diff options
| -rw-r--r-- | bot/cogs/bot.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/bot.py b/bot/cogs/bot.py index 8e29b0edf..3a3213ebd 100644 --- a/bot/cogs/bot.py +++ b/bot/cogs/bot.py @@ -52,12 +52,12 @@ class Bot: await ctx.send(embed=embed) @command(name="bot.info()", aliases=["bot.info", "bot.about", "bot.about()"]) - def info_wrapper(self, ctx: Context): + async def info_wrapper(self, ctx: Context): """ Get information about the bot """ - return self.info(ctx) + await self.info(ctx) def setup(bot): |