diff options
| author | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-10-17 18:10:54 -0700 |
|---|---|---|
| committer | Joseph Richey <joerichey94@gmail.com> | 2017-10-19 02:22:28 -0700 |
| commit | 7847ab8270efab472b7b6a4bf9a57f5b83cb7212 (patch) | |
| tree | dc8cb96be83a978389cd59793d18ad13af8df312 /cmd/errors.go | |
| parent | 36b313c802f9a8d23f2ad8ce5a59aa05f5925a2f (diff) | |
fmt almost done
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 |