Changeset 1900
- Timestamp:
- 02/22/08 03:50:09
- Files:
-
- trunk/cherrypy/_cprequest.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cprequest.py
r1899 r1900 691 691 # didn't provide a "Content-Type" header. 692 692 if 'Content-Type' not in self.headers: 693 h = self.headers.copy()694 h['Content-Type'] = ' application/octet-stream'693 h = http.HeaderMap(self.headers.items()) 694 h['Content-Type'] = '' 695 695 else: 696 696 h = self.headers

