projects
/
web
/
firmware-selector-openwrt-org.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17fb687
)
do not sort keys
author
Moritz Warning
<moritzwarning@web.de>
Fri, 14 Feb 2020 22:38:36 +0000
(23:38 +0100)
committer
Moritz Warning
<moritzwarning@web.de>
Fri, 14 Feb 2020 22:38:36 +0000
(23:38 +0100)
this is important when the snapshot release should appear before other releases
misc/collect.py
patch
|
blob
|
history
diff --git
a/misc/collect.py
b/misc/collect.py
index c8eb0baf8c66a8c7fce83a772b634345a3bc3e1a..415905e80041dd0696d0676f7cc77a6a5c6a3704 100755
(executable)
--- a/
misc/collect.py
+++ b/
misc/collect.py
@@
-94,6
+94,6
@@
for path in args.include:
exit(1)
if args.formatted:
- json.dump(output, sys.stdout,
sort_keys=True,
indent=" ")
+ json.dump(output, sys.stdout, indent=" ")
else:
- json.dump(output, sys.stdout
, sort_keys=True
)
+ json.dump(output, sys.stdout)