From 7704fded719392c8071821dde158dda34d29d4dd Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Mon, 23 Dec 2024 08:27:19 +0100 Subject: [PATCH] utils/get-developers: sort reported developers The list of reported developers is not ordered: that may leave the impression (when receiving a patch) that a Cc is more important than another, by virtue of being earlier in the list. Also, the ordering changes on every call. Report the developers in an alphabetically order, so that there is no confusion anymore, and so the ordering is reproducible across calls. Signed-off-by: Yann E. MORIN Signed-off-by: Julien Olivain (cherry picked from commit 3177ecd26096ab305c51620eb29b0e639f3133e9) Signed-off-by: Peter Korsgaard --- utils/get-developers | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/get-developers b/utils/get-developers index b45e617bff..3253ce5d6b 100755 --- a/utils/get-developers +++ b/utils/get-developers @@ -98,6 +98,7 @@ def __main__(): if i in dev.infras: matching_devs.add(dev.name) + matching_devs = sorted(matching_devs) if args.email: for dev in matching_devs: print(dev)