diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-02-05 23:12:58 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-02-05 23:12:58 +0100 |
commit | b4ccb70893330e3cc2414ca7eb0f61cf8007272e (patch) | |
tree | 101072e1c494e16b0fd80cb4f6466be9411e9382 /src/Text | |
parent | c93ecfc3c5d7c9ed0b4b7bdab943a0fedd185601 (diff) | |
download | pandoc-b4ccb70893330e3cc2414ca7eb0f61cf8007272e.tar.gz |
Fix an unneeded import warning.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/App.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs index e51a45395..66c627e72 100644 --- a/src/Text/Pandoc/App.hs +++ b/src/Text/Pandoc/App.hs @@ -71,7 +71,7 @@ import System.Posix.Terminal (queryTerminal) import System.Posix.IO (stdOutput) #endif import Control.Monad.Trans -import Text.Pandoc.Class (withMediaBag, PandocIO, getLog, setVerbosity) +import Text.Pandoc.Class (withMediaBag, PandocIO, getLog) convertWithOpts :: Opt -> [FilePath] -> IO () convertWithOpts opts args = do |