From 58825d4492b496ef0a6c3f11741e713e5ad60cf1 Mon Sep 17 00:00:00 2001 From: Doug A Date: Wed, 2 Oct 2019 20:45:16 -0400 Subject: [PATCH] Corrected Formatting Issue Missing space. --- pkg/minikube/out/out.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/minikube/out/out.go b/pkg/minikube/out/out.go index 8fc0233b2b..8fd1542c3d 100644 --- a/pkg/minikube/out/out.go +++ b/pkg/minikube/out/out.go @@ -164,7 +164,7 @@ func wantsColor(fd uintptr) bool { colorTerm := os.Getenv("COLORTERM") // Example: term-256color if !strings.Contains(term, "color") && !strings.Contains(colorTerm, "truecolor") && !strings.Contains(colorTerm, "24bit") && !strings.Contains(colorTerm, "yes") { - glog.Infof("TERM=%s,COLORTERM=%s, which probably does not support color", term,colorTerm) + glog.Infof("TERM=%s,COLORTERM=%s, which probably does not support color", term, colorTerm) return false }