Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Copyright #806

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import sphinx_rtd_theme
from sphinx.highlighting import lexers
from pygments.lexers.web import PhpLexer
from datetime import date

lexers['php'] = PhpLexer(startinline=True, linenos=1)

Expand Down Expand Up @@ -60,9 +61,10 @@
# The master toctree document.
master_doc = 'index'

current_year = date.today().year
# General information about the project.
project = u'Money'
copyright = u'2011-2019, Mathias Verraes, 2019 The Money PHP Team'
copyright = u'2011-{}, Mathias Verraes, {} The Money PHP Team'.format(current_year)
author = u'The Money PHP Team'

# The version info for the project you're documenting, acts as replacement for
Expand Down
Loading