aboutsummaryrefslogtreecommitdiff
path: root/CmdLine.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-09-06 13:46:08 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-09-06 13:46:08 -0400
commit07125dca53ece4896a83fad00b7f43101855ce9c (patch)
treec74bd30e459589239134f3e01603e8e8cc122ec7 /CmdLine.hs
parent14f75ced75aa73d4f8dbc45cdc697bac1535fb37 (diff)
Improve display of newlines around error and warning messages.
Diffstat (limited to 'CmdLine.hs')
-rw-r--r--CmdLine.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CmdLine.hs b/CmdLine.hs
index 2652e5b8f..4ccd2c2c2 100644
--- a/CmdLine.hs
+++ b/CmdLine.hs
@@ -89,8 +89,8 @@ tryRun' errnum state (a:as) = do
case result of
Left err -> do
Annex.eval state $ do
- showEndFail
showErr err
+ showEndFail
tryRun' (errnum + 1) state as
Right (True,state') -> tryRun' errnum state' as
Right (False,state') -> tryRun' (errnum + 1) state' as