]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
docs: Remove year from copyright variable 2562/head
authorBen Darnell <ben@bendarnell.com>
Sun, 30 Dec 2018 00:59:20 +0000 (19:59 -0500)
committerBen Darnell <ben@bendarnell.com>
Sun, 30 Dec 2018 00:59:20 +0000 (19:59 -0500)
Computing this dynamically is wrong and it doesn't seem worth the
trouble to maintain manually.

Closes #2258
Closes #2259

docs/conf.py

index 3de27ebac13df27d2c163d79c9e4ea9e5d42e89d..d6e37faf4f0edb2b7710fb20417131554d07f315 100644 (file)
@@ -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