summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Annex.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Annex.hs b/Annex.hs
index 03f9130b6..9915112a5 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -16,7 +16,8 @@ module Annex (
gitRepo
) where
-import Control.Monad.State hiding (state)
+import Control.Monad.State
+ (liftIO, StateT, runStateT, evalStateT, liftM, get, put)
import qualified GitRepo as Git
import qualified GitQueue