Skip to content

Commit

Permalink
Updates year in footer
Browse files Browse the repository at this point in the history
Year in footer updates automatically. Fixes coala#582
  • Loading branch information
catalina-garcia committed Dec 24, 2018
1 parent a247a76 commit e9e1cbb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

import sys
import os
import datetime

import coalib

Expand Down Expand Up @@ -49,9 +50,11 @@
# The master toctree document.
master_doc = 'index'

# General information about the project.
# General information about the project.
# Copyright year updated automatically.
project = 'coala'
copyright = '2017, The coala Developers'
year = datetime.datetime.now().year
copyright = str(year)+', The coala Developers'
author = 'The coala Developers'

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

0 comments on commit e9e1cbb

Please sign in to comment.