Commit 3c9a149c authored by Chelsea Holland Komlo's avatar Chelsea Holland Komlo
Browse files

remove stray comma

parent 927ddd7f
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
...@@ -468,7 +468,7 @@ func formatEventSubsystem(subsystem, driverName string) string { ...@@ -468,7 +468,7 @@ func formatEventSubsystem(subsystem, driverName string) string {
func formatEventDetails(details map[string]string) string { func formatEventDetails(details map[string]string) string {
output := make([]string, 0, len(details)) output := make([]string, 0, len(details))
for k, v := range details { for k, v := range details {
output = append(output, fmt.Sprintf("%s: %s, ", k, v)) output = append(output, fmt.Sprintf("%s: %s ", k, v))
} }
return strings.Join(output, ", ") return strings.Join(output, ", ")
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment