Ticket #194: cascade.py.diff
| File cascade.py.diff, 448 bytes (added by w31rd0, 5 years ago) |
|---|
-
cascade.py
old new 76 76 return _consuming_writer 77 77 return start_response(status, headers, exc_info) 78 78 79 length = int(environ.get('CONTENT_LENGTH' , '0'))79 length = int(environ.get('CONTENT_LENGTH') or 0) 80 80 if length > 0: 81 81 # We have to copy wsgi.input 82 82 copy_wsgi_input = True
