diff --git a/jarvis/cogs/dev.py b/jarvis/cogs/dev.py index 7ebf358..4ee81b0 100644 --- a/jarvis/cogs/dev.py +++ b/jarvis/cogs/dev.py @@ -243,7 +243,7 @@ class DevCog(commands.Cog): try: output = eval(code, locals(), globals()) except Exception: - output = traceback.format_tb() + output = traceback.format_exc() await ctx.send(f"```{output}```")