1
0
Fork 0
mirror of synced 2024-06-23 08:40:41 +12:00

Printing traceback for loading, as it doesn't seem to be working

This commit is contained in:
Phxntxm 2016-08-13 20:55:12 -05:00
parent 89d5bd9a22
commit 893af0e0cc

View file

@ -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)