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)