From cac4fdee14d0bf44da94c3f0d4f482c9f6b93241 Mon Sep 17 00:00:00 2001 From: Moritz Warning Date: Fri, 14 Feb 2020 23:38:36 +0100 Subject: [PATCH] do not sort keys this is important when the snapshot release should appear before other releases --- misc/collect.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2