From 75a047916521c5d3d23a7a63b8def59677061633 Mon Sep 17 00:00:00 2001 From: Dan Hemberger <846186+hemberger@users.noreply.github.com> Date: Sun, 24 Mar 2019 01:43:25 -0700 Subject: Fix last updated date in sphinx documentation (#2828) The "last updated" date was displaying as "None", which we can fix by uncommenting `html_last_updated_fmt` in the sphinx configuration. --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/conf.py') diff --git a/doc/conf.py b/doc/conf.py index f71c4d341..b214a14cc 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -138,7 +138,7 @@ html_theme_options = { # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -# html_last_updated_fmt = '%b %d, %Y' +html_last_updated_fmt = '%b %d, %Y' smartquotes = False -- cgit v1.2.1