diff options
| author | Martin Matusiak <numerodix@gmail.com> | 2014-01-16 22:34:35 +0100 |
|---|---|---|
| committer | Martin Matusiak <numerodix@gmail.com> | 2014-01-16 22:34:35 +0100 |
| commit | 63ff03c4ecaaf962710f0fa3801eadef1116bea6 (patch) | |
| tree | ee48476c7c18f438c16cf26fd3c2d169b3a81142 | |
| parent | cd69db68cf88703bac25150578bfe4e5d0dbcd3d (diff) | |
Fixed typo in docstring.
| -rw-r--r-- | django/http/response.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/response.py b/django/http/response.py index c590172a9c..f38c4918cd 100644 --- a/django/http/response.py +++ b/django/http/response.py @@ -141,7 +141,7 @@ class HttpResponseBase(six.Iterator): """Converts headers key/value to ascii/latin-1 native strings. `charset` must be 'ascii' or 'latin-1'. If `mime_encode` is True and - `value` value can't be represented in the given charset, MIME-encoding + `value` can't be represented in the given charset, MIME-encoding is applied. """ if not isinstance(value, (bytes, six.text_type)): |
