Control.Monad.State import fix for debian stable

It doesn't export `state` there, so hiding it fails. Just list explicitly
what we use.
This commit is contained in:
Joey Hess 2011-04-26 19:42:40 -04:00
parent 168f010fdf
commit 33d23a4ef9

View file

@ -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