Skip to content

Commit

Permalink
Merge pull request #8073 from afbjorklund/error-template
Browse files Browse the repository at this point in the history
Missing period character in the error template
  • Loading branch information
medyagh authored May 11, 2020
2 parents 12122f7 + e892829 commit 07d5472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/minikube/node/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func Start(starter Starter, apiServer bool) (*kubeconfig.Settings, error) {
wg.Add(1)
go func() {
if err := CacheAndLoadImagesInConfig(); err != nil {
out.FailureT("Unable to push cached images: {{error}}", out.V{"error": err})
out.FailureT("Unable to push cached images: {{.error}}", out.V{"error": err})
}
wg.Done()
}()
Expand Down

0 comments on commit 07d5472

Please sign in to comment.