summary refs log tree commit diff
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/teams.scm.in10
1 files changed, 7 insertions, 3 deletions
diff --git a/etc/teams.scm.in b/etc/teams.scm.in
index f3f33aae08..f74acadc01 100644
--- a/etc/teams.scm.in
+++ b/etc/teams.scm.in
@@ -538,8 +538,8 @@ TEAMS when a patch is received by Debbugs."
   "Print all teams, their scope and their members."
   (define port* (current-output-port))
   (define width* (%text-width))
-  (hash-for-each
-   (lambda (key team)
+  (for-each
+   (lambda (team)
      (format port*
              "\
 id: ~a
@@ -560,7 +560,11 @@ description: ~a
                (scope (format #f "scope: ~{~s ~}~%" scope))))
      (list-members team port* "+ ")
      (newline))
-   %teams))
+   (sort
+    (hash-map->list (lambda (key value) value) %teams)
+    (lambda (team1 team2)
+      (string<? (symbol->string (team-id team1))
+                (symbol->string (team-id team2)))))))
 
 
 (define (diff-revisions rev-start rev-end)