summary refs log tree commit diff
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/teams.scm.in26
1 files changed, 13 insertions, 13 deletions
diff --git a/etc/teams.scm.in b/etc/teams.scm.in
index b53eb63399..98288945a1 100644
--- a/etc/teams.scm.in
+++ b/etc/teams.scm.in
@@ -682,19 +682,19 @@ name: ~a
 description: ~a
 ~amembers:
 "
-            (team-id team)
-            (team-name team)
-            (or (and=> (team-description team)
-                       (lambda (text)
-                         (string->recutils
-                          (fill-paragraph text (%text-width)
-                                          (string-length "description: ")))))
-                "<none>")
-            (match (team-scope team)
-              (() "")
-              (scope (format #f "scope: ~{~s ~}~%" scope))))
-    (list-members team #:prefix "+ ")
-    (newline)))
+          (team-id team)
+          (team-name team)
+          (or (and=> (team-description team)
+                     (lambda (text)
+                       (string->recutils
+                        (fill-paragraph text (%text-width)
+                                        (string-length "description: ")))))
+              "<none>")
+          (match (team-scope team)
+            (() "")
+            (scope (format #f "scope:~%~{+ ~a~^~%~}~%" scope))))
+  (list-members team #:prefix "+ ")
+  (newline))
 
 (define (sort-teams teams)
   "Sort TEAMS, a list of <team> record objects."