From 33d23a4ef929f3affb86d7cd6c733101f052d624 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 26 Apr 2011 19:42:40 -0400 Subject: [PATCH] Control.Monad.State import fix for debian stable It doesn't export `state` there, so hiding it fails. Just list explicitly what we use. --- Annex.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Annex.hs b/Annex.hs index 03f9130b6a..9915112a59 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