diff options
Diffstat (limited to 'err.go')
| -rw-r--r-- | err.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,6 +58,6 @@ type errDecResp struct { func (e errDecResp) Error() string { req := e.Response.Request - return fmt.Sprintf("%s %s: error decoding response body %q: %v", + return fmt.Sprintf("%s %s: error decoding response body `%s`: %v", req.Method, req.URL, string(e.body), e.error) } |