remove spurious print

This commit is contained in:
benoitc 2012-03-01 08:24:00 +01:00
parent a3a655928d
commit 88cde80c9f

View File

@ -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