aboutsummaryrefslogtreecommitdiffstats
path: root/err.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-05-11 16:16:24 -0400
committerSam Anthony <sam@samanthony.xyz>2026-05-11 16:16:24 -0400
commitaf2de318402df1fd8d33192d71613c21c4ee96bf (patch)
tree473c33981032bc73f5a5f4282ef8b1292333ce28 /err.go
parentfcfe73600c8548d45820176d58f1c8cfc2327810 (diff)
downloadlulu-af2de318402df1fd8d33192d71613c21c4ee96bf.zip
implement POST /print-job-cost-calculations
Diffstat (limited to 'err.go')
-rw-r--r--err.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/err.go b/err.go
index cb79500..58984dc 100644
--- a/err.go
+++ b/err.go
@@ -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)
}