Changeset 4107
- Timestamp:
- 11/26/06 17:52:12 (2 years ago)
- Files:
-
- django/trunk/django/core/handlers/wsgi.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/handlers/wsgi.py
r4094 r4107 158 158 except AttributeError: 159 159 buf = StringIO() 160 # CONTENT_LENGTH might be absent if POST doesn't have content at all (lighttpd) 161 content_length = int(self.environ.get('CONTENT_LENGTH', 0)) 160 try: 161 # CONTENT_LENGTH might be absent if POST doesn't have content at all (lighttpd) 162 content_length = int(self.environ.get('CONTENT_LENGTH', 0)) 163 except ValueError: # if CONTENT_LENGTH was empty string or not an integer 164 content_length = 0 162 165 safe_copyfileobj(self.environ['wsgi.input'], buf, size=content_length) 163 166 self._raw_post_data = buf.getvalue()
