From b8a4d247f876016a641c349c8ad22babd8ecfb12 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 3 May 2024 20:09:23 -0400 Subject: [PATCH] fix(aurora): fixed a bug in /case with exports to codeblocks being improperly formatted --- aurora/aurora.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/aurora.py b/aurora/aurora.py index 758d549..42804a7 100644 --- a/aurora/aurora.py +++ b/aurora/aurora.py @@ -1421,7 +1421,7 @@ class Aurora(commands.Cog): os.remove(filename) return await interaction.response.send_message( - content=box({json.dumps(case_dict, indent=2)}), + content=box(json.dumps(case_dict, indent=2), 'json'), ephemeral=ephemeral, ) return