From 682a2dcbf2524ea7cb591b1527822ad5d1bf1036 Mon Sep 17 00:00:00 2001 From: Jeremy Shaw Date: Mon, 22 Oct 2012 19:46:19 +0000 Subject: [PATCH] add explicit import list for System.Directory to avoid name clash on findFile --- src/System/Plugins/Utils.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System/Plugins/Utils.hs b/src/System/Plugins/Utils.hs index 2bdb052..f754157 100644 --- a/src/System/Plugins/Utils.hs +++ b/src/System/Plugins/Utils.hs @@ -70,7 +70,7 @@ import Prelude hiding (catch) import System.IO import System.Environment ( getEnv ) -import System.Directory +import System.Directory ( doesFileExist, getModificationTime, removeFile ) -- --------------------------------------------------------------------- -- some misc types we use