summaryrefslogtreecommitdiff
path: root/doc/developer/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/developer/conf.py')
-rw-r--r--doc/developer/conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/developer/conf.py b/doc/developer/conf.py
index e4c56f54c3..1cb1d45af6 100644
--- a/doc/developer/conf.py
+++ b/doc/developer/conf.py
@@ -98,8 +98,8 @@ with open('../../config.status', 'r') as cfgstatus:
# manually fill out some of these we can't get from config.status
replace_vars['COPYRIGHT_STR'] = "Copyright (c)"
-replace_vars['COPYRIGHT_STR'] += ' {}'.format(replace_vars['COPYRIGHT_YEAR'])
-replace_vars['COPYRIGHT_STR'] += ' {}'.format(replace_vars['AUTHORS'])
+replace_vars['COPYRIGHT_STR'] += ' {0}'.format(replace_vars['COPYRIGHT_YEAR'])
+replace_vars['COPYRIGHT_STR'] += ' {0}'.format(replace_vars['AUTHORS'])
release = replace_vars['PACKAGE_VERSION']
version = release.split('-')[0]