Skip to content

Commit

Permalink
Fixing format string
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Herms committed Mar 16, 2018
1 parent 97e472f commit 293692d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notify.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (r *Receiver) Notify(data *alertmanager.Data) (bool, error) {
// Add Labels
if r.conf.AddGroupLabels {
for k, v := range data.GroupLabels {
issue.Fields.Labels = append(issue.Fields.Labels, fmt.Sprintf("%s=\"%q\"", k, v))
issue.Fields.Labels = append(issue.Fields.Labels, fmt.Sprintf("%s=%q", k, v))
}
}

Expand Down

0 comments on commit 293692d

Please sign in to comment.