Skip to content

Commit

Permalink
Update Copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
florianhofsaessC24 authored Dec 23, 2024
1 parent 51ebdac commit c101dc9
Showing 1 changed file with 3 additions and 1 deletion.
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

0 comments on commit c101dc9

Please sign in to comment.