From 1aaa713c490ed825ec52ac7a38cc36a15d4e047c Mon Sep 17 00:00:00 2001 From: Kevin Schoon Date: Sat, 3 Mar 2018 20:19:30 +0000 Subject: [PATCH] fix tag spacing --- util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.go b/util.go index f7a5680..834da30 100644 --- a/util.go +++ b/util.go @@ -57,7 +57,7 @@ func summerizeTasks(config *Config, tasks []*Task) { if len(task.Tags) > 0 { fmt.Printf(" [") for i, tag := range task.Tags { - if i > 1 && i != len(task.Tags) { + if i > 0 && i != len(task.Tags) { fmt.Printf(" ") } // user specified color mapping exists