mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-22 01:36:56 +01:00
Merge pull request #203 from bigchaindb/fix-copyright-year-in-docs
Problem: Copyright year wrong in docs
This commit is contained in:
commit
a3ff691310
@ -29,9 +29,10 @@
|
||||
#
|
||||
# needs_sphinx = '1.0'
|
||||
|
||||
from recommonmark.parser import CommonMarkParser
|
||||
import datetime
|
||||
import sphinx_rtd_theme
|
||||
|
||||
from recommonmark.parser import CommonMarkParser
|
||||
|
||||
# Add any Sphinx extension module names here, as strings. They can be
|
||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
||||
@ -58,7 +59,8 @@ master_doc = 'index'
|
||||
|
||||
# General information about the project.
|
||||
project = 'BigchainDB Javascript Driver'
|
||||
copyright = '2017, BigchainDB'
|
||||
now = datetime.datetime.now()
|
||||
copyright = str(now.year) + ', BigchainDB Contributors'
|
||||
author = 'BigchainDB Contributors'
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
|
Loading…
Reference in New Issue
Block a user