Corrected Formatting Issue

Missing space.
pull/5508/head
Doug A 2019-10-02 20:45:16 -04:00
parent c9765993c9
commit 58825d4492
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ func wantsColor(fd uintptr) bool {
colorTerm := os.Getenv("COLORTERM") colorTerm := os.Getenv("COLORTERM")
// Example: term-256color // Example: term-256color
if !strings.Contains(term, "color") && !strings.Contains(colorTerm, "truecolor") && !strings.Contains(colorTerm, "24bit") && !strings.Contains(colorTerm, "yes") { 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 return false
} }