diff options
author | Joey Hess <joey@kitenet.net> | 2011-09-01 16:02:01 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-09-01 16:02:01 -0400 |
commit | 5bc32c7f3438a329878f4da7ad0b514c12a54332 (patch) | |
tree | c598544113c70ea401e3c69f18a12cfd53d9d4bc /Command/Fsck.hs | |
parent | 2f4d4d1c4552a93a5f26a8a0a713e3916612329e (diff) |
add json formatted list of remotes
Wherever a list of remotes is shown, --json now enables a json formatted
list.
Diffstat (limited to 'Command/Fsck.hs')
-rw-r--r-- | Command/Fsck.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Fsck.hs b/Command/Fsck.hs index 6ccec05fb..bad60d30d 100644 --- a/Command/Fsck.hs +++ b/Command/Fsck.hs @@ -131,7 +131,7 @@ checkKeyNumCopies key file numcopies = do let present = length safelocations if present < needed then do - ppuuids <- Remote.prettyPrintUUIDs untrustedlocations + ppuuids <- Remote.prettyPrintUUIDs "untrusted" untrustedlocations warning $ missingNote (filename file key) present needed ppuuids return False else return True |