From 88cde80c9f0379e73373e716c2c0e01127e8532e Mon Sep 17 00:00:00 2001 From: benoitc Date: Thu, 1 Mar 2012 08:24:00 +0100 Subject: [PATCH] remove spurious print --- gunicorn/http/wsgi.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gunicorn/http/wsgi.py b/gunicorn/http/wsgi.py index b775bf51..dfdfe107 100644 --- a/gunicorn/http/wsgi.py +++ b/gunicorn/http/wsgi.py @@ -240,7 +240,6 @@ class Response(object): return tosend = self.default_headers() tosend.extend(["%s: %s\r\n" % (n, v) for n, v in self.headers]) - print tosend util.write(self.sock, "%s\r\n" % "".join(tosend)) self.headers_sent = True