From e25a5cc217cad359cb2c52d1529d5ad7489752c2 Mon Sep 17 00:00:00 2001 From: John Beisley Date: Sun, 4 Mar 2018 21:56:41 +0000 Subject: [PATCH] Fix formatting of an error message. --- soap/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soap/types.go b/soap/types.go index 813a2e0..3e73d99 100644 --- a/soap/types.go +++ b/soap/types.go @@ -334,7 +334,7 @@ func UnmarshalTimeOfDay(s string) (TimeOfDay, error) { if err != nil { return TimeOfDay{}, err } else if t.HasOffset { - return TimeOfDay{}, fmt.Errorf("soap time: value %q contains unexpected timezone") + return TimeOfDay{}, fmt.Errorf("soap time: value %q contains unexpected timezone", s) } return t, nil }