From 1ebefe9a7634298b826ea403ef6b6034904fc72e Mon Sep 17 00:00:00 2001 From: Maxim Lebedev Date: Mon, 15 Nov 2021 02:07:41 +0500 Subject: [PATCH] :art: Fixed string format for error URI --- internal/domain/error.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/domain/error.go b/internal/domain/error.go index 2d1c6bc..6f8c864 100644 --- a/internal/domain/error.go +++ b/internal/domain/error.go @@ -26,7 +26,7 @@ func (e Error) FormatError(p xerrors.Printer) error { p.Printf("%s: %s", e.Code, e.Description) if e.URI != "" { - p.Printf("%s", e.URI) + p.Printf(": %s", e.URI) } if p.Detail() {