Skip to content

Commit

Permalink
conf.py: Update year in footer
Browse files Browse the repository at this point in the history
This will automatically update the year in footer.

Closes coala#582
  • Loading branch information
sambhavkaul committed Jan 6, 2019
1 parent a247a76 commit 4018164
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion 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 @@ -51,7 +52,8 @@

# General information about the project.
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 4018164

Please sign in to comment.