From 928e97953dd0ee086d61623586d5523164e25c15 Mon Sep 17 00:00:00 2001 From: Jonathan Grochowski Date: Sat, 3 Mar 2012 19:40:37 -0800 Subject: Update Date plugin to use newer time package The Date plugin used the old-time package to format times which does not honor all escape sequences and optional flags (e.g. the - (hyphen) that should not pad the field). --- src/Plugins/Date.hs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Plugins/Date.hs b/src/Plugins/Date.hs index bfcb132..3caad30 100644 --- a/src/Plugins/Date.hs +++ b/src/Plugins/Date.hs @@ -21,7 +21,7 @@ module Plugins.Date (Date(..)) where import Plugins import System.Locale -import System.Time +import Data.Time data Date = Date String String Int deriving (Read, Show) @@ -32,6 +32,4 @@ instance Exec Date where rate (Date _ _ r) = r date :: String -> IO String -date format = do - t <- toCalendarTime =<< getClockTime - return $ formatCalendarTime defaultTimeLocale format t +date format = getZonedTime >>= return . formatTime defaultTimeLocale format -- cgit v1.2.3