From d7e88101851a29452938a7e27927dffde3161abd Mon Sep 17 00:00:00 2001 From: Donat Zenichev Date: Mon, 20 Jan 2025 11:14:45 +0100 Subject: [PATCH] MT#61856 docs: print actual year in copyright Make the year's value automatic. Change-Id: I6b1ab23144c758aa047cdcbaf26ba86745d150c9 (cherry picked from commit 20d9db29666fe14b05dae31d6f73683748d2f826) --- docs/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 9240b2fc9..657e8fc4b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -6,8 +6,10 @@ # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information +from datetime import date + project = 'rtpengine' -copyright = '2023, Sipwise' +copyright = str(date.today().year) + ', Sipwise' author = 'Sipwise' release = 'master'