From a8305830dbdc4122cf7e5c4e3257c7a93da12e1a Mon Sep 17 00:00:00 2001 From: Paul Robinson Date: Wed, 30 Mar 2016 22:25:04 +0000 Subject: [PATCH] Docs: keep copyright years up-to-date. llvm-svn: 264942 --- lld/docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lld/docs/conf.py b/lld/docs/conf.py index 99866e1..88fcdd8 100644 --- a/lld/docs/conf.py +++ b/lld/docs/conf.py @@ -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 -- 2.7.4