summaryrefslogtreecommitdiff
path: root/Backend/File.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-06-23 19:56:24 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-06-23 19:56:24 -0400
commite3384eb4764787daef926c307004d001e224a9fd (patch)
treeb4d8838d979b41878169b868b39e2d82d920812c /Backend/File.hs
parentc4cc6ee42f63bb8196f44608aaf35f7f9f411fe1 (diff)
tweak fsck wording so file is at the end of the line
Diffstat (limited to 'Backend/File.hs')
-rw-r--r--Backend/File.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Backend/File.hs b/Backend/File.hs
index 675b48307..1c25f89db 100644
--- a/Backend/File.hs
+++ b/Backend/File.hs
@@ -205,14 +205,14 @@ checkKeyNumCopies key file numcopies = do
missingNote :: String -> Int -> Int -> String -> String
missingNote file 0 _ [] =
- "** No known copies of " ++ file ++ " exist!"
+ "** No known copies exist of " ++ file
missingNote file 0 _ untrusted =
"Only these untrusted locations may have copies of " ++ file ++
"\n" ++ untrusted ++
"Back it up to trusted locations with git-annex copy."
missingNote file present needed [] =
"Only " ++ show present ++ " of " ++ show needed ++
- " trustworthy copies of " ++ file ++ " exist." ++
+ " trustworthy copies exist of " ++ file ++
"\nBack it up with git-annex copy."
missingNote file present needed untrusted =
missingNote file present needed [] ++