projects
/
tools
/
git-buildpackage-rpm-testdata.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
830cb9b
)
manage.py: sort keys when exporting manifest.json
author
Markus Lehtonen
<markus.lehtonen@linux.intel.com>
Tue, 8 Dec 2015 21:31:07 +0000
(23:31 +0200)
committer
Markus Lehtonen
<markus.lehtonen@linux.intel.com>
Wed, 9 Dec 2015 07:00:02 +0000
(09:00 +0200)
More predictable output.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
manage.py
patch
|
blob
|
history
diff --git
a/manage.py
b/manage.py
index 9f0b4679534b4912de21f68a48c592e7aac10358..df8286f8201f9a94513a74db349304ac62415450 100755
(executable)
--- 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):