Better time format for Redis serialization.

This commit is contained in:
Felipe Lessa 2015-05-28 02:44:46 -03:00
parent ff6c0efaab
commit c9e080d5b8

View File

@ -159,7 +159,7 @@ printUTCTime = B8.pack . TI.formatTime TI.defaultTimeLocale timeFormat
-- | Time format used when storing 'UTCTime'.
timeFormat :: String
timeFormat = "%Y-%m-%dT%H:%M:%S.%q"
timeFormat = "%Y-%m-%dT%H:%M:%S%Q"
----------------------------------------------------------------------