From 9a823906824287c3251f7c826994e159f4ba5234 Mon Sep 17 00:00:00 2001 From: "Dusty.P" Date: Sun, 20 May 2018 00:22:40 -0800 Subject: [PATCH] Switching to asyncpg --- exts/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exts/events.py b/exts/events.py index 94cd785..f7e4351 100644 --- a/exts/events.py +++ b/exts/events.py @@ -146,7 +146,7 @@ class BotEvents: async def on_command_error(ctx, error): if ctx.channel.id == 418452585683484680 and type(error) == discord.ext.commands.errors.CommandNotFound: return - for page in utils.paginate(error): + for page in utils.paginate(dir(error)): await ctx.send(page) async def on_guild_join(self, guild):