From 357921b4835df384ac5b87e4dc506ec9d78a1861 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 26 Apr 2014 17:02:33 -0600 Subject: [PATCH] Use HelpPrinter in ShowCommandHelp --- help.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }