Skip to content

Commit 06c32c7

Browse files
committed
conf.py: Update year in footer
This will automatically Update the year in footer. Closes coala#582
1 parent a247a76 commit 06c32c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

conf.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
import sys
1717
import os
18+
import datetime
1819

1920
import coalib
2021

@@ -51,7 +52,8 @@
5152

5253
# General information about the project.
5354
project = 'coala'
54-
copyright = '2017, The coala Developers'
55+
year = datetime.datetime.now().year
56+
copyright = str(year) + ", The coala Developers"
5557
author = 'The coala Developers'
5658

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

0 commit comments

Comments
 (0)