summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-05-16 22:49:41 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-05-16 22:49:41 -0400
commit33e6425d102af17f32593e87286aaf8b11a7e1d4 (patch)
treec552f4e95d614f4d49b688c1196a78b94f67d0f6
parent51cc71fac176878de2ccb960f62db419bb63d00f (diff)
tweak
-rw-r--r--Command/Status.hs7
1 files changed, 5 insertions, 2 deletions
diff --git a/Command/Status.hs b/Command/Status.hs
index c2f7692c5..39e230021 100644
--- a/Command/Status.hs
+++ b/Command/Status.hs
@@ -169,7 +169,7 @@ keySizeSum (keys, len) = do
let missing = len - genericLength knownsize
return $ total ++
if missing > 0
- then " (but " ++ show missing ++ " keys have unknown size)"
+ then aside $ "but " ++ show missing ++ " keys have unknown size"
else ""
staleSize :: String -> (Git.Repo -> FilePath) -> Stat
@@ -179,4 +179,7 @@ staleSize label dirspec = do
then nostat
else stat label $ do
s <- keySizeSum $ sizeList keys
- return $ s ++ " (clean up with git-annex unused)"
+ return $ s ++ aside "clean up with git-annex unused"
+
+aside :: String -> String
+aside s = "\t(" ++ s ++ ")"