Skip to content

Commit

Permalink
Fix missing format arg
Browse files Browse the repository at this point in the history
  • Loading branch information
rs committed Mar 9, 2018
1 parent 35a1b9e commit 7d12d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aggr/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (p *aggrsParser) parse() (map[string]Aggregator, error) {
var err error
aggrs[name], err = aggr(args)
if err != nil {
return nil, fmt.Errorf("%s: %v", err)
return nil, fmt.Errorf("%s: %v", name, err)
}
if !p.expect(',') {
break
Expand Down

0 comments on commit 7d12d4c

Please sign in to comment.