diff options
author | Joey Hess <joey@kitenet.net> | 2010-12-24 19:28:02 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-12-24 19:28:02 -0400 |
commit | dd55f21450d5ed9f71b015295c33c0c9bf0060f9 (patch) | |
tree | 1b408fbda7731df2064d60e39993ea3a29149b6a /Command | |
parent | 904af72b82ee513748672620dd51bae050494a6e (diff) |
add a newline
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Unused.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Command/Unused.hs b/Command/Unused.hs index de34ceae9..69a16f254 100644 --- a/Command/Unused.hs +++ b/Command/Unused.hs @@ -50,7 +50,8 @@ checkUnused = do " NUMBER KEY"] ++ map cols u ++ ["(To see where data was previously used, try: git log --stat -S'KEY')", - "(To remove unwanted data: git-annex dropunused NUMBER)"] + "(To remove unwanted data: git-annex dropunused NUMBER)", + ""] cols (n,k) = " " ++ pad 6 (show n) ++ " " ++ show k pad n s = s ++ replicate (n - length s) ' ' |