Don't choke if month is wrong.

This commit is contained in:
Justin Hsu 2016-10-13 22:43:11 -04:00
parent e949084a4d
commit 59cc6b58ab
1 changed files with 1 additions and 0 deletions

View File

@ -113,6 +113,7 @@ expandMonth mon = case mon of
"oct" -> "October" "oct" -> "October"
"nov" -> "November" "nov" -> "November"
"dec" -> "December" "dec" -> "December"
x -> x
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
-- Inefficient... -- Inefficient...