[llvm] r244789 - Docs: keep copyright years up-to-date.

Hans Wennborg via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 12 11:27:24 PDT 2015


Author: hans
Date: Wed Aug 12 13:27:23 2015
New Revision: 244789

URL: http://llvm.org/viewvc/llvm-project?rev=244789&view=rev
Log:
Docs: keep copyright years up-to-date.

Modified:
    llvm/trunk/docs/conf.py

Modified: llvm/trunk/docs/conf.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/conf.py?rev=244789&r1=244788&r2=244789&view=diff
==============================================================================
--- llvm/trunk/docs/conf.py (original)
+++ llvm/trunk/docs/conf.py Wed Aug 12 13:27:23 2015
@@ -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'LLVM'
-copyright = u'2003-2014, LLVM Project'
+copyright = u'2003-%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