Skip to content
Snippets Groups Projects
Commit 0718960b authored by Dan Lorenc's avatar Dan Lorenc
Browse files

Fix error


Signed-off-by: default avatarDan Lorenc <dlorenc@google.com>
parent 5fd6568d
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ func (g *getCmdOutput) String() string {
var b bytes.Buffer
e := json.NewEncoder(&b)
e.SetIndent("", " ")
e.Encode(g.Body)
_ = e.Encode(g.Body)
s += fmt.Sprintf("Body: %s\n", b.Bytes())
return s
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment