diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-12-19 16:13:38 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-12-19 16:13:38 -0800 |
commit | 2c3310a592e33bf4bd4e4a1328efda0d1b6ac218 (patch) | |
tree | d64ea4ad9d85078e9191f14328cb4c7ff5e81207 /src/Text/Pandoc/Readers | |
parent | f72dfc2d94f2c4488f8da381ca5c82e075a1f64c (diff) | |
download | pandoc-2c3310a592e33bf4bd4e4a1328efda0d1b6ac218.tar.gz |
Added Text.Pandoc.Compat.Locale to assist with transition to time 1.5.
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r-- | src/Text/Pandoc/Readers/Txt2Tags.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Readers/Txt2Tags.hs b/src/Text/Pandoc/Readers/Txt2Tags.hs index 6f8c19ac7..834d18c5c 100644 --- a/src/Text/Pandoc/Readers/Txt2Tags.hs +++ b/src/Text/Pandoc/Readers/Txt2Tags.hs @@ -52,7 +52,7 @@ import Control.Monad.Reader (Reader, runReader, asks) import Data.Time.LocalTime (getZonedTime) import Text.Pandoc.Compat.Directory(getModificationTime) import Data.Time.Format (formatTime) -import System.Locale (defaultTimeLocale) +import Text.Pandoc.Compat.Locale (defaultTimeLocale) import System.IO.Error (catchIOError) type T2T = ParserT String ParserState (Reader T2TMeta) @@ -576,4 +576,3 @@ atStart = (sourceColumn <$> getPosition) >>= guard . (== 1) ignoreSpacesCap :: T2T String -> T2T String ignoreSpacesCap p = map toLower <$> (spaces *> p <* spaces) - |