From 06c32c7fd1570fd72d185349f4a6728386f030fd Mon Sep 17 00:00:00 2001 From: Sambhav Kaul Date: Sun, 6 Jan 2019 13:33:02 +0530 Subject: [PATCH] conf.py: Update year in footer This will automatically Update the year in footer. Closes https://github.com/coala/documentation/issues/582 --- conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/conf.py b/conf.py index e1d67772..8da0c1c7 100644 --- a/conf.py +++ b/conf.py @@ -15,6 +15,7 @@ import sys import os +import datetime import coalib @@ -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