diff --git a/help.go b/help.go index 47a4e12..7c04005 100644 --- a/help.go +++ b/help.go @@ -110,7 +110,7 @@ func DefaultAppComplete(c *Context) { func ShowCommandHelp(c *Context, command string) { for _, c := range c.App.Commands { if c.HasName(command) { - printHelp(CommandHelpTemplate, c) + HelpPrinter(CommandHelpTemplate, c) return } }