You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2017/09/05 15:31:47 UTC

[4/4] libcloud git commit: Update year in the copyright line in the docs footer.

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 <to...@tomaz.me>
Authored: Tue Sep 5 16:50:51 2017 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
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