Skip to content
This repository has been archived by the owner on Apr 26, 2021. It is now read-only.

Commit

Permalink
Do not trim help output - fixes #71
Browse files Browse the repository at this point in the history
  • Loading branch information
felixSchl committed Aug 18, 2016
1 parent 96206b3 commit 446de9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Docopt/Docopt.purs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ run input opts = do

case action of
Return v -> pure v
ShowHelp help -> abort 0 (String.trim help)
ShowHelp help -> abort 0 help
ShowVersion -> do
mVer <- maybe readPkgVersion (pure <<< pure) opts.version
case mVer of
Expand Down

0 comments on commit 446de9d

Please sign in to comment.