Changeset 6548
- Timestamp:
- 10/20/07 01:50:16 (1 year ago)
- Files:
-
- django/trunk/django/http/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/http/__init__.py
r6546 r6548 318 318 319 319 def _get_content(self): 320 content = smart_str(''.join(self._container), self._charset) 321 return content 320 if self.has_header('Content-Encoding'): 321 return ''.join(self._container) 322 return smart_str(''.join(self._container), self._charset) 322 323 323 324 def _set_content(self, value):
