fix(aurora): changed the logging statement again
Some checks failed
Actions / Build Documentation (MkDocs) (pull_request) Successful in 29s
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 54s

This commit is contained in:
Seaswimmer 2024-05-04 22:55:50 -04:00
parent a6371fd367
commit 293f77c228
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -135,7 +135,7 @@ def generate_dict(bot: Red, result: dict, guild_id: int) -> dict:
duration = None
if result[14] is not None:
logger.debug('%s', result[14])
logger.debug('%s\n%s', result[14], result[14].replace('\\"', '"').replace('["{', '[{').replace('}"]', '}]'))
changes = json.loads(result[14].replace('\\"', '"').replace('["{', '[{').replace('}"]', '}]'))
change_obj_list = []
for change in changes: