Ticket #4969: gzip-http.diff
File gzip-http.diff, 469 bytes (added by , 17 years ago) |
---|
-
django/http/__init__.py
271 271 self.cookies[key]['max-age'] = 0 272 272 273 273 def _get_content(self): 274 if self.has_header('Content-Encoding'): 275 return ''.join(self._container) 274 276 content = smart_str(''.join(self._container), self._charset) 275 277 return content 276 278