From a8e510d789e9e38c7f27d242fe88268875dc01ea Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 9 Jul 2009 19:03:08 +0000 Subject: [PATCH] tighten up some imports --- Ledger/Parse.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ledger/Parse.hs b/Ledger/Parse.hs index 5a20a8039..d46e104d9 100644 --- a/Ledger/Parse.hs +++ b/Ledger/Parse.hs @@ -6,8 +6,8 @@ Parsers for standard ledger and timelog files. module Ledger.Parse where -import Prelude hiding (readFile, putStr, print) -import Control.Monad.Error +import Prelude hiding (readFile, putStr, putStrLn, print) +import Control.Monad.Error (ErrorT(..), MonadIO, liftIO, throwError, catchError) import Text.ParserCombinators.Parsec import Text.ParserCombinators.Parsec.Char import Text.ParserCombinators.Parsec.Combinator