Update year in the copyright line in the docs footer.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/58b574e3 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/58b574e3 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/58b574e3 Branch: refs/heads/trunk Commit: 58b574e3bc569dc00a7de827d325c6bc002324cc Parents: 110437e Author: Tomaz Muraus <[email protected]> Authored: Tue Sep 5 16:50:51 2017 +0200 Committer: Tomaz Muraus <[email protected]> Committed: Tue Sep 5 17:30:41 2017 +0200 ---------------------------------------------------------------------- docs/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/58b574e3/docs/conf.py ---------------------------------------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index c79010a..4d993b4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,6 +13,7 @@ import os import sys +import datetime import subprocess from sphinx.environment import BuildEnvironment @@ -59,8 +60,9 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. +now = datetime.datetime.utcnow() project = u'Apache Libcloud' -copyright = u'2013, The Apache Software Foundation' +copyright = u'2013 - %s, The Apache Software Foundation' % (now.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
