🎨 Fixed string format for error URI

This commit is contained in:
Maxim Lebedev 2021-11-15 02:07:41 +05:00
parent 20234f8938
commit 1ebefe9a76
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 1 additions and 1 deletions

View File

@ -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() {