From: Anton Tiurin Date: Fri, 10 Oct 2014 10:10:08 +0000 (+0400) Subject: Fix an example in docstring of HTTPServer X-Git-Tag: v4.1.0b1~73^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1217%2Fhead;p=thirdparty%2Ftornado.git Fix an example in docstring of HTTPServer --- diff --git a/tornado/httpserver.py b/tornado/httpserver.py index 03b5fc737..05d0e186c 100644 --- a/tornado/httpserver.py +++ b/tornado/httpserver.py @@ -50,6 +50,7 @@ class HTTPServer(TCPServer, httputil.HTTPServerConnectionDelegate): import tornado.httpserver import tornado.ioloop + from tornado import httputil def handle_request(request): message = "You requested %s\n" % request.uri