Explorar el Código

Output metadata separated by , rather than |

Santiago Pastorino hace 5 años
padre
commit
3df905bc1c
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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,
                 ));
             }