Skip to content

Commit 551356d

Browse files
committed
Remove quotes from API updating message
(cherry picked from commit cb25b54)
1 parent 974bbef commit 551356d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cmd/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func ErrorDockerCtrlC() error {
127127
func ErrorAPINotReady(apiName string, status string) error {
128128
return errors.WithStack(&errors.Error{
129129
Kind: ErrAPINotReady,
130-
Message: fmt.Sprintf("%s is %s", s.UserStr(apiName), status),
130+
Message: fmt.Sprintf("%s is %s", apiName, status),
131131
})
132132
}
133133

0 commit comments

Comments
 (0)