From 3a761d80287908150846ad750b3d56484ff8f806 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Sun, 5 Apr 2015 01:44:28 -0400 Subject: [PATCH] Update Copyright year Updating conf.py to always pull the current year to avoid needing to update this in the future, per review feedback. Change-Id: I1b58210dacf7df92a078ae4a67885b2ed8a1dea1 Signed-off-by: Thanh Ha --- doc/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 1bdba5bd0..4540b43a8 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -11,7 +11,7 @@ # All configuration values have a default; values that are commented out # serve to show the default. -import sys, os +import sys, os, datetime # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -43,7 +43,7 @@ master_doc = 'index' # General information about the project. project = u'Nodepool' -copyright = u'2014, OpenStack' +copyright = u'%s, OpenStack' % datetime.date.today().year # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.