diff options
author | Joey Hess <joey@kitenet.net> | 2011-12-02 19:21:56 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-12-02 19:21:56 -0400 |
commit | f0cc42685e42a493c83eb85de02e61c54f69e4f0 (patch) | |
tree | b8c7aeb33a5f540ae828b6be941d073c533e6731 /Logs | |
parent | c22f43d6c2cd1030d7890778646f229c23a64e28 (diff) |
fix display of dead repositories in status
Diffstat (limited to 'Logs')
-rw-r--r-- | Logs/Trust.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Logs/Trust.hs b/Logs/Trust.hs index f18f42511..196666a84 100644 --- a/Logs/Trust.hs +++ b/Logs/Trust.hs @@ -38,7 +38,8 @@ trustPartition level ls | level == SemiTrusted = do t <- trustGet Trusted u <- trustGet UnTrusted - let uncandidates = t ++ u + d <- trustGet DeadTrusted + let uncandidates = t ++ u ++ d return $ partition (`notElem` uncandidates) ls | otherwise = do candidates <- trustGet level |