From 6193b27cd7c71bcff5b5dd0cafb4f04172a73206 Mon Sep 17 00:00:00 2001 From: Grant Ammons Date: Tue, 3 Oct 2017 07:25:44 -0400 Subject: false to true --- todolist/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'todolist/app.go') diff --git a/todolist/app.go b/todolist/app.go index ad02569..5703ace 100644 --- a/todolist/app.go +++ b/todolist/app.go @@ -184,7 +184,7 @@ func (a *App) HandleNotes(input string) { } else if parser.ParseShowNote(todo, input) { groups := map[string][]*Todo{} groups[""] = append(groups[""], todo) - a.Printer.Print(&GroupedTodos{Groups: groups}, false) + a.Printer.Print(&GroupedTodos{Groups: groups}, true) return } a.Save() -- cgit v1.3