diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-27 16:17:56 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-27 16:17:56 -0400 |
commit | f30320aa75d6fa590f60030f13df6b3899816196 (patch) | |
tree | 8152163ab2170de227566c42f196051a94ef5e91 /Backend | |
parent | b40f253d6e126d699e9f298bf670fc5e875bfd86 (diff) |
add remotes slot to Annex
This required parameterizing the type for Remote, to avoid a cycle.
Diffstat (limited to 'Backend')
-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 743d8d627..9c102cf50 100644 --- a/Backend/File.hs +++ b/Backend/File.hs @@ -147,7 +147,7 @@ showLocations key exclude = do message [] us = "Also these untrusted repositories may contain the file:\n" ++ us message rs us = message rs [] ++ message [] us -showTriedRemotes :: [RemoteClass.Remote] -> Annex () +showTriedRemotes :: [RemoteClass.Remote Annex] -> Annex () showTriedRemotes [] = return () showTriedRemotes remotes = showLongNote $ "Unable to access these remotes: " ++ |