summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/conf.py8
1 files changed, 7 insertions, 1 deletions
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: