From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 15 Nov 2023 05:20:14 +0000 (+0100) Subject: [3.12] Docs: Add the time to the HTML last updated format (GH-110091) (#112102) X-Git-Tag: v3.12.1~126 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c1905527398da3c474ec783ad643330b405211fb;p=thirdparty%2FPython%2Fcpython.git [3.12] Docs: Add the time to the HTML last updated format (GH-110091) (#112102) 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> --- diff --git a/Doc/conf.py b/Doc/conf.py index 9f01bd89a35d..98b84db964bf 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -288,9 +288,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']