Fix function signature for cli.HelpPrinter

Necessary due to github.com/codegangsta/cli/commit/e8425
This commit is contained in:
Stev Witzel 2015-05-20 23:39:11 +01:00
parent 4b51a55993
commit 0bdd0bf9c1

View File

@ -1,6 +1,7 @@
package cmd
import (
"io"
"os"
"strings"
"text/tabwriter"
@ -102,7 +103,7 @@ GLOBAL OPTIONS:
{{end}}
`
cli.HelpPrinter = func(templ string, data interface{}) {
cli.HelpPrinter = func(writer io.Writer, templ string, data interface{}) {
w := tabwriter.NewWriter(os.Stdout, 0, 8, 1, '\t', 0)
t := template.Must(template.New("help").Parse(templ))
err := t.Execute(w, data)