diff options
author | Joey Hess <joey@kitenet.net> | 2010-11-28 17:33:01 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-11-28 17:33:01 -0400 |
commit | fe4f1aae4b6c5fe3527f3e2462efac6e337f4978 (patch) | |
tree | eca830e631ca894a4a4f57926055be4fb8bcc234 | |
parent | 7e82d420d80572af2b9f047039ecbafbb2d79e8e (diff) |
include key in message
-rw-r--r-- | Backend/File.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Backend/File.hs b/Backend/File.hs index e3225a8b8..d09e09f56 100644 --- a/Backend/File.hs +++ b/Backend/File.hs @@ -172,7 +172,7 @@ checkKeyNumCopies key numcopies = do return False else return True where - note 0 _ = "** No known copies of the file exist!" + note 0 _ = "** No known copies of "++show key++" exist!" note present needed = "Only " ++ show present ++ " of " ++ show needed ++ " copies of "++show key++" exist. " ++ |