summaryrefslogtreecommitdiff
path: root/Remote.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-03-27 19:23:00 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-03-27 19:23:00 -0400
commit28bf28a73c503c7c2d9add38e964149355bb9e50 (patch)
tree169796dee448367549cdf3a3e9a65126d24fec00 /Remote.hs
parent4868b64868747455a9c5d512650f9e7074e6009e (diff)
rename
Diffstat (limited to 'Remote.hs')
-rw-r--r--Remote.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Remote.hs b/Remote.hs
index a7136ea65..b3f1a0c6b 100644
--- a/Remote.hs
+++ b/Remote.hs
@@ -27,7 +27,8 @@ import Control.Monad (when, liftM)
import Data.List
import RemoteClass
-import qualified Remote.GitRemote
+import qualified Remote.Git
+import qualified Remote.S3
import Types
import UUID
import qualified Annex
@@ -36,7 +37,7 @@ import LocationLog
{- add generators for new Remotes here -}
generators :: [Annex [Remote Annex]]
-generators = [Remote.GitRemote.generate]
+generators = [Remote.Git.generate]
{- Builds a list of all available Remotes.
- Since doing so can be expensive, the list is cached in the Annex. -}