scripts/eddn-report-log-errors: EDSM/1.0.3: Materials as dict

This commit is contained in:
Athanasius 2022-02-22 15:43:59 +00:00
parent 2b141bf8ac
commit 6607e3eb45

View File

@ -186,6 +186,13 @@ def process_file(input_file: str) -> None:
): ):
pass pass
elif (
matches.group('err_msg').startswith('Failed Validation "[<ValidationError: "{') and
matches.group('err_msg').endswith('} is not of type \'array\'">]"')
):
# <https://github.com/EDSM-NET/FrontEnd/issues/473>
pass
else: else:
print(matches.group('err_msg')) print(matches.group('err_msg'))
print(line) print(line)