diff options
Diffstat (limited to 'todolist/app.go')
| -rw-r--r-- | todolist/app.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/todolist/app.go b/todolist/app.go index c2bd66a..4d526c9 100644 --- a/todolist/app.go +++ b/todolist/app.go @@ -143,7 +143,9 @@ func (a *App) ManipulateNotes(input string) { retStr := parser.ParseNotes(todo, input) if retStr != "" { a.Save() - fmt.Println("Notes " + retStr + "ed.") + if retStr != "list" { + fmt.Println("Notes " + retStr + "ed.") + } } } |
