From 876035b7bde22c769473a651a7d942cee36dd1cb Mon Sep 17 00:00:00 2001 From: Justin Powell Date: Wed, 11 Jan 2017 19:24:46 -0600 Subject: conf.py: Fix build_date() to append correct suffix on all days. --- common/conf.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'common/conf.py') diff --git a/common/conf.py b/common/conf.py index c4531b9..ce3469f 100644 --- a/common/conf.py +++ b/common/conf.py @@ -8,10 +8,16 @@ def build_date(): now = datetime.date.today() m = now.strftime('%b') y = now.strftime('%Y') - if now.day % 10 == 1: + if now.day == 11: + s = 'th' + elif now.day % 10 == 1: s = 'st' + elif now.day == 12: + s = 'th' elif now.day % 10 == 2: s = 'nd' + elif now.day == 13: + s = 'th' elif now.day == 3: s = 'rd' else: -- cgit v1.2.3