From 58d87ceba92eb5c4d2b0ea433e74c41978801ce5 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sat, 13 Aug 2016 17:48:49 -0500 Subject: [PATCH] I forgot an await.... --- cogs/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/core.py b/cogs/core.py index 64f3b50..a3bb517 100644 --- a/cogs/core.py +++ b/cogs/core.py @@ -73,7 +73,7 @@ class Core: fmt['Description'] = self.bot.description information = "\n".join("{}: {}".format(key, result) for key, result in fmt.items()) - self.bot.say("```\n{}```".format(information)) + await self.bot.say("```\n{}```".format(information)) @commands.command() @checks.customPermsOrRole(send_messages=True)