From aaf14ffda12df32841a6747d28f3f64bdce1ccf9 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 14 Jul 2010 07:08:20 +0000 Subject: [PATCH] fix a cabal dependency issue --- hledger-lib/Hledger/Read.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hledger-lib/Hledger/Read.hs b/hledger-lib/Hledger/Read.hs index cfbfc2a00..5d0111d23 100644 --- a/hledger-lib/Hledger/Read.hs +++ b/hledger-lib/Hledger/Read.hs @@ -22,7 +22,6 @@ import Hledger.Data.Utils import Hledger.Read.Common import Hledger.Read.Journal as Journal import Hledger.Read.Timelog as Timelog -import Hledger.Cli.Version (version) import Control.Monad.Error import Data.Either (partitionEithers) @@ -105,7 +104,7 @@ ensureJournalFile f = do emptyJournal :: IO String emptyJournal = do d <- getCurrentDay - return $ printf "; journal created by hledger %s on %s\n; see http://hledger.org/MANUAL.html#file-format\n\n" version (show d) + return $ printf "; journal created by hledger on %s\n; see http://hledger.org/MANUAL.html#file-format\n\n" (show d) -- | Read a Journal from this string, using the specified data format or -- trying all known formats, or give an error string.