Ticket #6063: SafeString_remove.diff
File SafeString_remove.diff, 476 bytes (added by , 17 years ago) |
---|
-
django/http/__init__.py
331 331 chunk = self._iterator.next() 332 332 if isinstance(chunk, unicode): 333 333 chunk = chunk.encode(self._charset) 334 return chunk334 return str(chunk) 335 335 336 336 def close(self): 337 337 if hasattr(self._container, 'close'):