diff options
| author | Grant Ammons <gammons@gmail.com> | 2017-10-03 07:25:44 -0400 |
|---|---|---|
| committer | Grant Ammons <gammons@gmail.com> | 2017-10-03 07:40:03 -0400 |
| commit | 6193b27cd7c71bcff5b5dd0cafb4f04172a73206 (patch) | |
| tree | 49bfa1d32b280be32ac42f1d0ddf1ef07f6809fe /todolist/app.go | |
| parent | b393a332bef9847cc634f35be1ac8ffe54425d1d (diff) | |
false to true
Diffstat (limited to 'todolist/app.go')
| -rw-r--r-- | todolist/app.go | 2 |
1 files changed, 1 insertions, 1 deletions
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() |
