summaryrefslogtreecommitdiffstats
path: root/common/conf.py
diff options
context:
space:
mode:
authorJustin Powell <mrmoolovesu@gmail.com>2017-01-11 19:24:46 -0600
committerJoel Sherrill <joel@rtems.org>2017-01-11 19:24:46 -0600
commit876035b7bde22c769473a651a7d942cee36dd1cb (patch)
treec98ea6131f5de29954ff43cde89990abe61b6257 /common/conf.py
parentUpdate document titles for consistency (diff)
downloadrtems-docs-876035b7bde22c769473a651a7d942cee36dd1cb.tar.bz2
conf.py: Fix build_date() to append correct suffix on all days.
Diffstat (limited to 'common/conf.py')
-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: