diff --git a/help.go b/help.go index 87d38098..f009e080 100644 --- a/help.go +++ b/help.go @@ -10,10 +10,9 @@ import ( func (e *Executor) PrintTasksHelp() { tasks := e.tasksWithDesc() if len(tasks) == 0 { - e.outf("task: No tasks with description available") return } - e.outf("task: Available tasks for this project:") + e.outf("Available tasks for this project:") // Format in tab-separated columns with a tab stop of 8. w := tabwriter.NewWriter(e.Stdout, 0, 8, 0, '\t', 0)