1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 00:07:14 +03:00

EDMC: Fix -d file export of CAPI data

This commit is contained in:
Athanasius 2021-08-24 13:04:25 +01:00
parent 332d4cf975
commit f12b8be74c
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D

View File

@ -341,7 +341,7 @@ sys.path: {sys.path}'''
# stuff we can do when not docked
if args.d:
logger.debug(f'Writing raw JSON data to "{args.d}"')
out = json.dumps(data, ensure_ascii=False, indent=2, sort_keys=True, separators=(',', ': '))
out = json.dumps(dict(data), ensure_ascii=False, indent=2, sort_keys=True, separators=(',', ': '))
with open(args.d, 'wb') as f:
f.write(out.encode("utf-8"))