diff options
author | 2011-04-26 19:42:40 -0400 | |
---|---|---|
committer | 2011-04-26 19:42:40 -0400 | |
commit | 33d23a4ef929f3affb86d7cd6c733101f052d624 (patch) | |
tree | a828ac12399282bf7e4f3d9e70293434ae1938ae | |
parent | 168f010fdff967e4be8cf36e26f63ca2d712d4e6 (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.
-rw-r--r-- | Annex.hs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |