summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-23 13:59:47 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-23 13:59:47 -0400
commit03bcb8d8b3033726eb4a5b1122fbadc1adb6b3a5 (patch)
treeb12e01c587c55f1ed5f706acb093be62522d4c0b
parent9dfbf40d1a8493ec191f8e79410ed9d2a9508141 (diff)
better message display
-rw-r--r--Core.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Core.hs b/Core.hs
index da05823bb..176aa2bf3 100644
--- a/Core.hs
+++ b/Core.hs
@@ -97,11 +97,11 @@ logStatus key status = do
{- Output logging -}
showStart :: String -> String -> Annex ()
showStart command file = do
- liftIO $ putStr $ command ++ " " ++ file
+ liftIO $ putStr $ command ++ " " ++ file ++ " "
liftIO $ hFlush stdout
showNote :: String -> Annex ()
showNote s = do
- liftIO $ putStr $ " (" ++ s ++ ")"
+ liftIO $ putStr $ "(" ++ s ++ ") "
liftIO $ hFlush stdout
showLongNote :: String -> Annex ()
showLongNote s = do
@@ -110,7 +110,7 @@ showLongNote s = do
indent s = join "\n" $ map (\l -> " " ++ l) $ lines s
showEndOk :: Annex ()
showEndOk = do
- liftIO $ putStrLn " ok"
+ liftIO $ putStrLn "ok"
showEndFail :: Annex ()
showEndFail = do
liftIO $ putStrLn "\nfailed"