
5 Feb
2010
5 Feb
'10
2:04 a.m.
Johannes> Data.Time.LocalTime.LocalTime.LocalTime: Cannot parse Johannes> using default format string "%Y-%m-%dT%T%Q"
this actually comes from the default format string that is defined in old-locale:System.Locale? iso8601DateFormat :: Maybe String -> String iso8601DateFormat mTimeFmt = "%Y-%m-%d" ++ case mTimeFmt of Nothing -> "" Just fmt -> 'T' : fmt and this can't be right - the 'T' is invalid? J.