We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d996b5 commit 7057d5eCopy full SHA for 7057d5e
Doc/conf.py
@@ -331,7 +331,8 @@
331
}
332
333
# This 'Last updated on:' timestamp is inserted at the bottom of every page.
334
-html_last_updated_fmt = time.strftime('%b %d, %Y (%H:%M UTC)', time.gmtime())
+html_time = int(os.environ.get('SOURCE_DATE_EPOCH', time.time()))
335
+html_last_updated_fmt = time.strftime('%b %d, %Y (%H:%M UTC)', time.gmtime(html_time))
336
337
# Path to find HTML templates.
338
templates_path = ['tools/templates']
0 commit comments