We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1920a2d commit 0685f89Copy full SHA for 0685f89
1 file changed
README.md
@@ -143,7 +143,7 @@ func printOdataError(err error) {
143
switch err.(type) {
144
case *odataerrors.ODataError:
145
typed := err.(*odataerrors.ODataError)
146
- fmt.Printf("error:", typed.Error())
+ fmt.Printf("error: %s", typed.Error())
147
if terr := typed.GetError(); terr != nil {
148
fmt.Printf("code: %s", *terr.GetCode())
149
fmt.Printf("msg: %s", *terr.GetMessage())
0 commit comments