format table
This commit is contained in:
parent
0150704259
commit
0a416d60f2
|
@ -3,7 +3,6 @@ package format
|
|||
import (
|
||||
"fmt"
|
||||
"sort"
|
||||
"strings"
|
||||
|
||||
"git.ewintr.nl/gte/internal/task"
|
||||
)
|
||||
|
@ -21,7 +20,7 @@ func FormatTaskTable(tasks []*task.LocalTask) string {
|
|||
|
||||
var output string
|
||||
for _, t := range tasks {
|
||||
output += fmt.Sprintf("%d\t%s\t%s (%s, %s)\n", t.LocalId, t.Due.String(), t.Action, t.Project, strings.ToLower(t.Folder))
|
||||
output += fmt.Sprintf("%d\t%s\t%s (%s)\n", t.LocalId, t.Due.String(), t.Action, t.Project)
|
||||
}
|
||||
|
||||
return output
|
||||
|
|
Loading…
Reference in New Issue