diff options
| author | Tim Graham <timograham@gmail.com> | 2014-01-16 13:47:44 -0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-01-16 13:47:44 -0800 |
| commit | 54d396ff8500b56b81e0b131cd9158359179e5ca (patch) | |
| tree | d28c1c991d29150d9bdb1995414cb4cf1286b3e3 | |
| parent | 7535e9f4a4f5317a0073a8fde0eacf17ce31bac0 (diff) | |
| parent | 63ff03c4ecaaf962710f0fa3801eadef1116bea6 (diff) | |
Merge pull request #2176 from numerodix/master
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)): |
