From e5bd1c2e0e685fc822c65fce96e88542981dd1d1 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sat, 29 Dec 2018 19:59:20 -0500 Subject: [PATCH] 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 --- docs/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 -- 2.47.2