diff options
Diffstat (limited to 'cmd/errors.go')
| -rw-r--r-- | cmd/errors.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/errors.go b/cmd/errors.go index d4aca6d..c67c0f1 100644 --- a/cmd/errors.go +++ b/cmd/errors.go @@ -109,7 +109,7 @@ func (ctx *Context) processError(err error) { // Errors with a help text should print it out. if helpText := ctx.getHelpText(err); helpText != "" { fmt.Fprintln(os.Stderr) - fmt.Fprintln(os.Stderr, WrapText(helpText, 0)) + fmt.Fprintln(os.Stderr, helpText) } os.Exit(FailureCode) return |