aboutsummaryrefslogtreecommitdiff
path: root/cmd/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/errors.go')
-rw-r--r--cmd/errors.go2
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