From: Moritz Warning Date: Fri, 14 Feb 2020 22:38:36 +0000 (+0100) Subject: do not sort keys X-Git-Tag: v1.0.0~14 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=cac4fdee14d0bf44da94c3f0d4f482c9f6b93241;p=web%2Ffirmware-selector-openwrt-org.git do not sort keys this is important when the snapshot release should appear before other releases --- diff --git a/misc/collect.py b/misc/collect.py index c8eb0ba..415905e 100755 --- 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)