From 896d8ac4c74589f9936fbd2bc713357f17611c6e Mon Sep 17 00:00:00 2001 From: clowwindy Date: Wed, 8 May 2013 11:28:03 +0800 Subject: [PATCH] Update httpclient.py fix typo --- tornado/httpclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tornado/httpclient.py b/tornado/httpclient.py index 551fd0b1c..76ece1d7e 100644 --- a/tornado/httpclient.py +++ b/tornado/httpclient.py @@ -53,7 +53,7 @@ class HTTPClient(object): print response.body except httpclient.HTTPError as e: print "Error:", e - httpclient.close() + http_client.close() """ def __init__(self, async_client_class=None, **kwargs): self._io_loop = IOLoop() -- 2.47.2