summaryrefslogtreecommitdiff
path: root/git-annex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-11 18:39:36 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-11 18:39:36 -0400
commitf6306bc301af7db3da7afa6e095014de37e2bce3 (patch)
tree77247ee1e9dea8e5ebc45d74d7ce1d8be5f38d78 /git-annex.hs
parent530f16b980bbfe70b49d5112ad9c48a9754e69c5 (diff)
wording
Diffstat (limited to 'git-annex.hs')
-rw-r--r--git-annex.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-annex.hs b/git-annex.hs
index ec80359b6..7bcd4de22 100644
--- a/git-annex.hs
+++ b/git-annex.hs
@@ -19,7 +19,7 @@ main = do
- and propigating an overall error status at the end. -}
tryRun errnum oknum [] = do
if (errnum > 0)
- then error $ (show errnum) ++ " failed ; " ++ show (oknum) ++ " succeeded"
+ then error $ (show errnum) ++ " failed ; " ++ show (oknum) ++ " ok"
else return ()
tryRun errnum oknum (a:as) = do
result <- try (a)::IO (Either SomeException ())