summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-10-28 13:41:29 +0200
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-10-28 13:41:29 +0200
commit46de95a1b0ea809671291d24906120c7b5a3d741 (patch)
tree25d80a722f5f23586abbd52e84a64d8f6882c28b
parentee7e2b05225d4365c5ff9f38e675e48da1cffdf5 (diff)
downloadhakyll-46de95a1b0ea809671291d24906120c7b5a3d741.tar.gz
Fix compile error
-rw-r--r--src/Text/Hakyll/Render.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Text/Hakyll/Render.hs b/src/Text/Hakyll/Render.hs
index 16962bb..aa3ef8c 100644
--- a/src/Text/Hakyll/Render.hs
+++ b/src/Text/Hakyll/Render.hs
@@ -9,7 +9,7 @@ module Text.Hakyll.Render
, writePage
) where
-import Control.Arrow ((>>>), arr)
+import Control.Arrow ((>>>))
import Control.Applicative ((<$>))
import Control.Monad.Reader (liftIO)
import System.Directory (copyFile)
@@ -20,6 +20,7 @@ import Text.Hakyll.Context (Context (..))
import Text.Hakyll.HakyllMonad (Hakyll, askHakyll, getAdditionalContext)
import Text.Hakyll.File
import Text.Hakyll.HakyllAction
+import Text.Hakyll.ContextManipulations
import Text.Hakyll.Internal.CompressCss
import Text.Hakyll.Internal.Template