From 98e0c6e26dda52fc872c5cfa5a2b90f6bccdf872 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Wed, 10 Sep 2014 15:22:40 -0400 Subject: [PATCH] Use the current date for the copyright statement Change-Id: I935602a3a7a11455d009c37e9eebbb30c3ada037 --- doc/source/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index de27d6b..a09667a 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -12,6 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +import datetime import os import sys @@ -56,7 +57,7 @@ master_doc = 'index' # General information about the project. project = u'zaqar-specs' -copyright = u'2014, OpenStack Foundation' +copyright = u'%s, OpenStack Foundation' % datetime.date.today().year # If true, '()' will be appended to :func: etc. cross-reference text. add_function_parentheses = True