diff options
| author | Dan Hemberger <846186+hemberger@users.noreply.github.com> | 2019-03-24 01:43:25 -0700 |
|---|---|---|
| committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-03-24 09:43:25 +0100 |
| commit | 75a047916521c5d3d23a7a63b8def59677061633 (patch) | |
| tree | 9b8ad43759c7fe091973a9794e9a7d255b0226df /doc/conf.py | |
| parent | ac5b1a434a8dddf3cfea361eb5c65669e76dc9b1 (diff) | |
| download | pylint-git-75a047916521c5d3d23a7a63b8def59677061633.tar.gz | |
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.
Diffstat (limited to 'doc/conf.py')
| -rw-r--r-- | doc/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
