summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Backend/File.hs2
-rw-r--r--Command/Unused.hs3
2 files changed, 3 insertions, 2 deletions
diff --git a/Backend/File.hs b/Backend/File.hs
index afbe38ac0..f88bb7c70 100644
--- a/Backend/File.hs
+++ b/Backend/File.hs
@@ -175,4 +175,4 @@ checkKeyNumCopies key numcopies = do
note present needed =
"Only " ++ show present ++ " of " ++ show needed ++
" copies of "++show key++" exist. " ++
- "Run git annex get somewhere else to back it up."
+ "Back it up with git-annex copy."
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) ' '