From 1e28882f18e6dc37895d59aa4f61603ea97596f1 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Wed, 10 Sep 2014 14:45:21 -0400 Subject: [PATCH] Use the current date for the copyright statement Change-Id: Ib40cd048d3950806ec3f240e634e3596f08d1a93 --- 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 2430f7aab..0dd0e2dbc 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 @@ -58,7 +59,7 @@ master_doc = 'index' # General information about the project. project = u'Neutron Specs' -copyright = u'2014, OpenStack Neutron Team' +copyright = u'%s, OpenStack Neutron Team' % datetime.date.today().year # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.