From 59cc6b58ab41da6111d7a6f3ce50f6b59ac0de76 Mon Sep 17 00:00:00 2001 From: Justin Hsu Date: Thu, 13 Oct 2016 22:43:11 -0400 Subject: [PATCH] Don't choke if month is wrong. --- HakyllBibTex.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/HakyllBibTex.hs b/HakyllBibTex.hs index 9543a71..1f9b672 100644 --- a/HakyllBibTex.hs +++ b/HakyllBibTex.hs @@ -113,6 +113,7 @@ expandMonth mon = case mon of "oct" -> "October" "nov" -> "November" "dec" -> "December" + x -> x -------------------------------------------------------------------------------- -- Inefficient...