diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-29 18:28:37 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-29 18:28:37 -0400 |
commit | 8f9951369d5e85e3a1bf323760f0c873a3f21b97 (patch) | |
tree | 150c2124fb56da9ac4770aa75839945774d77c30 /Remote/S3.hs | |
parent | 43bdebbc2d2c22623a0114dca51b8339bf7231c4 (diff) |
refactor
Diffstat (limited to 'Remote/S3.hs')
-rw-r--r-- | Remote/S3.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Remote/S3.hs b/Remote/S3.hs index b3a910639..260c1eee8 100644 --- a/Remote/S3.hs +++ b/Remote/S3.hs @@ -16,7 +16,7 @@ import qualified Data.ByteString.Lazy.Char8 as L import qualified Data.Map as M import Data.Maybe import Data.String.Utils -import Control.Monad (filterM, when) +import Control.Monad (when) import Control.Monad.State (liftIO) import System.Environment @@ -41,7 +41,7 @@ remote = RemoteType { s3List :: Annex [Git.Repo] s3List = do g <- Annex.gitRepo - filterM remoteNotIgnored $ findS3Remotes g + return $ findS3Remotes g {- S3 remotes have a remote.<name>.annex-s3 config setting. - Git.Repo does not normally generate remotes for things that |