From e53fc614221083bc059a6eebfab91172db0a0723 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 13 Jun 2014 11:03:37 -0400 Subject: [PATCH] Unpickle Nothing as "TBA" in xp_tba_time. --- src/TSN/Picklers.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TSN/Picklers.hs b/src/TSN/Picklers.hs index ff7b0d1..bc13bad 100644 --- a/src/TSN/Picklers.hs +++ b/src/TSN/Picklers.hs @@ -227,7 +227,7 @@ xp_tba_time = | otherwise = parseTime defaultTimeLocale time_format s from_time :: Maybe UTCTime -> String - from_time Nothing = "" + from_time Nothing = "TBA" from_time (Just t) = formatTime defaultTimeLocale time_format t -- 2.43.2