From 893af0e0cc65f0b2fa0d738f94794478b572d403 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sat, 13 Aug 2016 20:55:12 -0500 Subject: [PATCH] Printing traceback for loading, as it doesn't seem to be working --- cogs/owner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cogs/owner.py b/cogs/owner.py index 31af3d0..c0ef320 100644 --- a/cogs/owner.py +++ b/cogs/owner.py @@ -121,6 +121,8 @@ class Owner: except Exception as error: fmt = 'An error occurred while processing this request: ```py\n{}: {}\n```' await self.bot.say(fmt.format(type(error).__name__, error)) + await self.bot.say(error.original.__traceback__) + await self.bot.say(error.__traceback__) @commands.command() @commands.check(checks.isOwner)