From 2f07c507bbdf7d77ade0bdff9ef2bafc13e3bde2 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Wed, 10 Sep 2014 13:48:59 -0400 Subject: [PATCH] Use the current date for the copyright statement Change-Id: I961908acf4513ffd03f0fae34fc6564c62e12359 --- 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 3af358f1..3200d831 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -11,6 +11,7 @@ # All configuration values have a default; values that are commented out # serve to show the default. +import datetime import sys import os @@ -54,7 +55,7 @@ master_doc = 'index' # General information about the project. project = u'Cinder Specs' -copyright = u'2014, OpenStack Cinder Team' +copyright = u'%s, OpenStack Cinder Team' % datetime.date.today().year # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.