diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-15 05:20:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 05:20:17 (GMT) |
commit | a92b9e5b2b50638c1a01e0e7fe77c81148d74285 (patch) | |
tree | f4b13fff356b9f3a63c9206eb81b793d0d883ce6 | |
parent | e73216d32b10ffbf9d0ee82e8c646b91f745ed91 (diff) | |
download | cpython-a92b9e5b2b50638c1a01e0e7fe77c81148d74285.zip cpython-a92b9e5b2b50638c1a01e0e7fe77c81148d74285.tar.gz cpython-a92b9e5b2b50638c1a01e0e7fe77c81148d74285.tar.bz2 |
[3.11] Docs: Add the time to the HTML last updated format (GH-110091) (#112103)
Docs: Add the time to the HTML last updated format (GH-110091)
(cherry picked from commit 6c214dea7c503eb42bd130d43e8880f39bff0350)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
-rw-r--r-- | Doc/conf.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 8c92799..3f5ba5d 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -280,9 +280,8 @@ html_context = { "pr_id": os.getenv("READTHEDOCS_VERSION") } -# 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' +# This 'Last updated on:' timestamp is inserted at the bottom of every page. +html_last_updated_fmt = time.strftime('%b %d, %Y (%H:%M UTC)', time.gmtime()) # Path to find HTML templates. templates_path = ['tools/templates'] |