[lld] r264942 - Docs: keep copyright years up-to-date.
Paul Robinson via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 30 15:25:04 PDT 2016
Author: probinson
Date: Wed Mar 30 17:25:04 2016
New Revision: 264942
URL: http://llvm.org/viewvc/llvm-project?rev=264942&view=rev
Log:
Docs: keep copyright years up-to-date.
Modified:
lld/trunk/docs/conf.py
Modified: lld/trunk/docs/conf.py
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/docs/conf.py?rev=264942&r1=264941&r2=264942&view=diff
==============================================================================
--- lld/trunk/docs/conf.py (original)
+++ lld/trunk/docs/conf.py Wed Mar 30 17:25:04 2016
@@ -11,6 +11,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
@@ -40,7 +41,7 @@ master_doc = 'index'
# General information about the project.
project = u'lld'
-copyright = u'2011-2014, LLVM Project'
+copyright = u'2011-%d, LLVM Project' % 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 llvm-commits
mailing list