Pārlūkot izejas kodu

Output metadata separated by , rather than |

Santiago Pastorino 5 gadi atpakaļ
vecāks
revīzija
3df905bc1c
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      src/meeting.rs

+ 2 - 2
src/meeting.rs

@@ -168,13 +168,13 @@ impl Template for IssuesTemplate {
                         .iter()
                         .map(|l| l.name.as_ref())
                         .collect::<Vec<_>>()
-                        .join(" | "),
+                        .join(", "),
                     issue
                         .assignees
                         .iter()
                         .map(|u| u.login.as_ref())
                         .collect::<Vec<_>>()
-                        .join(" | "),
+                        .join(", "),
                     post,
                 ));
             }