Revert "fix(backup): properly support codeblocks (maybe?)"
Some checks failed
Actions / Lint Code (Pylint) (pull_request) Failing after 15s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 11s

This reverts commit 168f62d43f.
This commit is contained in:
Seaswimmer 2024-01-31 13:11:17 -05:00
parent 168f62d43f
commit c2aa674bff

View file

@ -75,7 +75,7 @@ class Backup(commands.Cog):
return return
def extract_json_from_codeblock(self, text): def extract_json_from_codeblock(self, text):
match = re.match(r"```(?:\w+)?\n(.*?)(?<!\[)\n```", text, re.DOTALL) match = re.match(r"```(?:\w+)?\n(.*?)\n```", text, re.DOTALL)
if match: if match:
return match.group(1).strip() return match.group(1).strip()
else: else: