r264941 - Docs: keep copyright years up-to-date.
Paul Robinson via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 30 15:24:57 PDT 2016
Author: probinson
Date: Wed Mar 30 17:24:57 2016
New Revision: 264941
URL: http://llvm.org/viewvc/llvm-project?rev=264941&view=rev
Log:
Docs: keep copyright years up-to-date.
Modified:
cfe/trunk/docs/analyzer/conf.py
Modified: cfe/trunk/docs/analyzer/conf.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/analyzer/conf.py?rev=264941&r1=264940&r2=264941&view=diff
==============================================================================
--- cfe/trunk/docs/analyzer/conf.py (original)
+++ cfe/trunk/docs/analyzer/conf.py Wed Mar 30 17:24:57 2016
@@ -12,6 +12,7 @@
# serve to show the default.
import sys, os
+from datetime import date
# 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
@@ -41,7 +42,7 @@ master_doc = 'index'
# General information about the project.
project = u'Clang Static Analyzer'
-copyright = u'2013-2014, Analyzer Team'
+copyright = u'2013-%d, Analyzer Team' % date.today().year
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
More information about the cfe-commits
mailing list