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:
parent
168f010fdf
commit
33d23a4ef9
1 changed files with 2 additions and 1 deletions
3
Annex.hs
3
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
|
||||
|
|
Loading…
Reference in a new issue