Skip to content

Commit

Permalink
[json_output] remove sort_keys in json.dumps call (fix soimort#2773)
Browse files Browse the repository at this point in the history
  • Loading branch information
soimort committed Jan 31, 2020
1 parent 771a89f commit 5147481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/you_get/json_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def output(video_extractor, pretty_print=True):
if extra:
out["extra"] = extra
if pretty_print:
print(json.dumps(out, indent=4, sort_keys=True, ensure_ascii=False))
print(json.dumps(out, indent=4, ensure_ascii=False))
else:
print(json.dumps(out))

Expand Down

0 comments on commit 5147481

Please sign in to comment.