[Secure-testing-commits] r12987 - lib/python
Florian Weimer
fw at alioth.debian.org
Sun Oct 11 12:52:56 UTC 2009
Author: fw
Date: 2009-10-11 12:52:56 +0000 (Sun, 11 Oct 2009)
New Revision: 12987
Modified:
lib/python/web_support.py
Log:
lib/python/web_support.py (BinaryResult_later): call end_headers()
Modified: lib/python/web_support.py
===================================================================
--- lib/python/web_support.py 2009-10-11 12:05:22 UTC (rev 12986)
+++ lib/python/web_support.py 2009-10-11 12:52:56 UTC (rev 12987)
@@ -633,6 +633,7 @@
def later(req):
req.send_response(self.status)
req.send_header('Content-Type', self.mimetype)
+ req.end_headers()
req.wfile.write(self.contents)
return later
More information about the Secure-testing-commits
mailing list