From: Ben Darnell Date: Mon, 20 Jul 2015 12:36:04 +0000 (-0400) Subject: Update copyright line in docs. X-Git-Tag: v4.3.0b1~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d53f72fe6716e2c6956695ec1001930578e67407;p=thirdparty%2Ftornado.git Update copyright line in docs. --- diff --git a/docs/conf.py b/docs/conf.py index 368e4e85c..04cc19693 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,13 +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 = "2011, Facebook" +copyright = "2009-%s, The Tornado Authors" % time.strftime("%Y") version = release = tornado.version