From aead4ebd40c0ce23421c4924562a0d20ad7a82b3 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Tue, 8 Dec 2015 23:31:07 +0200 Subject: [PATCH] manage.py: sort keys when exporting manifest.json More predictable output. Signed-off-by: Markus Lehtonen --- manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage.py b/manage.py index 9f0b467..df8286f 100755 --- a/manage.py +++ b/manage.py @@ -249,7 +249,7 @@ def write_repo_data(outfile, **kwargs): #data = {'refs': refs, 'tags': tags, 'commits': commits} data = kwargs with open(outfile, 'w') as fobj: - json.dump(data, fobj, indent=4) + json.dump(data, fobj, indent=4, sort_keys=True) def split_git_author(author): -- 2.34.1