summaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-04-26 19:42:40 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-04-26 19:42:40 -0400
commit33d23a4ef929f3affb86d7cd6c733101f052d624 (patch)
treea828ac12399282bf7e4f3d9e70293434ae1938ae /Annex.hs
parent168f010fdff967e4be8cf36e26f63ca2d712d4e6 (diff)
Control.Monad.State import fix for debian stable
It doesn't export `state` there, so hiding it fails. Just list explicitly what we use.
Diffstat (limited to 'Annex.hs')
-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