From: Ben Darnell Date: Sun, 30 Dec 2018 00:59:20 +0000 (-0500) Subject: docs: Remove year from copyright variable X-Git-Tag: v6.0.0b1~10^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2562%2Fhead;p=thirdparty%2Ftornado.git docs: Remove year from copyright variable Computing this dynamically is wrong and it doesn't seem worth the trouble to maintain manually. Closes #2258 Closes #2259 --- diff --git a/docs/conf.py b/docs/conf.py index 3de27ebac..d6e37faf4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,7 +1,6 @@ # Ensure we get the local copy of tornado instead of what's on the standard path import os import sys -import time sys.path.insert(0, os.path.abspath("..")) import tornado @@ -9,7 +8,7 @@ import tornado master_doc = "index" project = "Tornado" -copyright = "2009-%s, The Tornado Authors" % time.strftime("%Y") +copyright = "The Tornado Authors" version = release = tornado.version