Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
Add verbs to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
janczer committed Mar 27, 2017
1 parent d1aac41 commit 30089dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/snaptel/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func getConfig(ctx *cli.Context) error {
defer w.Flush()
r := pClient.GetPluginConfig(ptyp, pname, strconv.Itoa(pver))
if r.Err != nil {
return fmt.Errorf("Error requesting info: ", r.Err)
return fmt.Errorf("Error requesting info: %v", r.Err)
}
printFields(w, false, 0,
"NAME",
Expand Down

0 comments on commit 30089dd

Please sign in to comment.