summaryrefslogtreecommitdiff
path: root/Backend.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-30 17:29:11 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-30 17:29:11 -0400
commit583e8118d4e77fc4f76474717a821c56e3cf772d (patch)
tree17a0ba3d1cb04a37ad454fb195cb452960065c16 /Backend.hs
parentfad1616e68b2219a7e1a6c4b7e1cfe8485ad8c2b (diff)
ok, let's just use extensible-exceptions
Diffstat (limited to 'Backend.hs')
-rw-r--r--Backend.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Backend.hs b/Backend.hs
index 59df37fc4..00b2833e0 100644
--- a/Backend.hs
+++ b/Backend.hs
@@ -27,7 +27,7 @@ module Backend (
) where
import Control.Monad.State
-import Control.Exception
+import Control.Exception.Extensible
import System.Directory
import System.FilePath
import Data.String.Utils
@@ -39,7 +39,6 @@ import qualified Annex
import Utility
import Types
import qualified TypeInternals as Internals
-import Portability
{- List of backends in the order to try them when storing a new key. -}
list :: Annex [Backend]