From a673093da350187caf1cb5e3c6efb0e255d23a3c Mon Sep 17 00:00:00 2001 From: Tristan Seligmann Date: Wed, 10 Aug 2016 09:19:43 +0200 Subject: [PATCH] Make copyright year static. (#49) Thanks --- docs/conf.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index cacf3c2d..71dc51f8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,6 @@ # serve to show the default. import codecs -import datetime import os import re @@ -80,10 +79,7 @@ master_doc = 'index' # General information about the project. project = u'attrs' -year = datetime.date.today().year -copyright = u'2015{0}, Hynek Schlawack'.format( - u'-{0}'.format(year) if year != 2015 else u"" -) +copyright = u'2015, Hynek Schlawack' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the