From ccedd3723525875a008296e1d3a8045402ccc3b8 Mon Sep 17 00:00:00 2001 From: benoitc Date: Sat, 27 Feb 2010 15:51:20 +0100 Subject: [PATCH] s/sock/util spotted by jbergstroem on irc --- gunicorn/http/request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/http/request.py b/gunicorn/http/request.py index a8795f01..a1500d44 100644 --- a/gunicorn/http/request.py +++ b/gunicorn/http/request.py @@ -87,7 +87,7 @@ class Request(object): # # So we try to read here the body and just skip it - l = sock.CHUNK_SIZE + l = util.CHUNK_SIZE while True: b = ctypes.create_string_buffer(l) try: