Skip to content

Commit

Permalink
docs: Remove year from copyright variable
Browse files Browse the repository at this point in the history
Computing this dynamically is wrong and it doesn't seem worth the
trouble to maintain manually.

Closes tornadoweb#2258
Closes tornadoweb#2259
  • Loading branch information
bdarnell committed Dec 30, 2018
1 parent e7e31e5 commit e5bd1c2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
# 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

master_doc = "index"

project = "Tornado"
copyright = "2009-%s, The Tornado Authors" % time.strftime("%Y")
copyright = "The Tornado Authors"

version = release = tornado.version

Expand Down

0 comments on commit e5bd1c2

Please sign in to comment.