diff options
Diffstat (limited to 'Logs/Trust.hs')
-rw-r--r-- | Logs/Trust.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Logs/Trust.hs b/Logs/Trust.hs index 6305d281f..072ea41d6 100644 --- a/Logs/Trust.hs +++ b/Logs/Trust.hs @@ -30,8 +30,8 @@ trustLog = "trust.log" trustGet :: TrustLevel -> Annex [UUID] trustGet SemiTrusted = do -- special case; trustMap does not contain all these others <- M.keys . M.filter (/= SemiTrusted) <$> trustMap - all <- uuidList - return $ all \\ others + alluuids <- uuidList + return $ alluuids \\ others trustGet level = M.keys . M.filter (== level) <$> trustMap {- Read the trustLog into a map, overriding with any |