diff options
Diffstat (limited to 'resources/tools/presentation/conf.py')
-rw-r--r-- | resources/tools/presentation/conf.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/resources/tools/presentation/conf.py b/resources/tools/presentation/conf.py index 2ef414f669..58d4443d10 100644 --- a/resources/tools/presentation/conf.py +++ b/resources/tools/presentation/conf.py @@ -45,7 +45,8 @@ source_suffix = ['.rst', '.md'] master_doc = 'index' # General information about the project. -project = u'FD.io CSIT-1901.04' +report_week = '06' +project = u'FD.io CSIT-1901.{week}'.format(week=report_week) copyright = u'2019, FD.io' author = u'FD.io CSIT' @@ -105,7 +106,7 @@ rst_epilog = """ .. _CSIT Testbed Setup: https://git.fd.io/csit/tree/resources/tools/testbed-setup/README.md?h={release} .. _K8s configuration files: https://github.com/FDio/csit/tree/{release}/resources/templates/kubernetes """.format(release='rls1901', - report_week='04', + report_week=report_week, prev_release='rls1810', srelease='1901', csitrelease='1901', |