Changeset 316
- Timestamp:
- 06/15/05 00:48:05
- Files:
-
- branches/ooconf/cherrypy/_cphttptools.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/ooconf/cherrypy/_cphttptools.py
r314 r316 392 392 if (cpg.config.get("server.protocolVersion") != "HTTP/1.1" 393 393 and cpg.response.headerMap.get('Content-Length') == 0): 394 cpg.response.body = content = ''.join(cpg.response.body) 394 content = ''.join(cpg.response.body) 395 cpg.response.body = [content] 395 396 cpg.response.headerMap['Content-Length'] = len(content) 396 397

