lib: explicitly specify that the 'Glob' package should be used

Without this there are conflicts with the 'filemanip' package,
which itself exports a module 'System.FilePath.Glob'.
This commit is contained in:
Joseph Weston 2018-07-24 19:53:13 +02:00 committed by Simon Michael
parent c69b16d826
commit 1ec16c2dc0

View File

@ -94,7 +94,7 @@ import Text.Megaparsec.Char
import Text.Megaparsec.Custom
import Text.Printf
import System.FilePath
import System.FilePath.Glob hiding (match)
import "Glob" System.FilePath.Glob hiding (match)
import Hledger.Data
import Hledger.Read.Common