Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pori_python/ipr/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ def ipr_report(
if always_write_output_json:
logger.info(f'Writing IPR upload json to: {output_json_path}')
with open(output_json_path, 'w') as fh:
fh.write(json.dumps(output))
json.dump(output, fh, indent=4)

logger.info(f'made {graphkb_conn.request_count} requests to graphkb')
logger.info(f'average load {int(graphkb_conn.load or 0)} req/s')
Expand Down
Loading