diff --git a/help.go b/help.go index 85ce0ce7..612e45b3 100644 --- a/help.go +++ b/help.go @@ -44,7 +44,7 @@ func (e *Executor) printTasks(listAll bool) { // Format in tab-separated columns with a tab stop of 8. w := tabwriter.NewWriter(e.Stdout, 0, 8, 0, '\t', 0) for _, task := range tasks { - fmt.Fprintf(w, "* %s: \t%s\n", task.Name(), task.Desc) + fmt.Fprintf(w, "* %s: \t%s\n", task.Task, task.Desc) } w.Flush() }