From 63ff03c4ecaaf962710f0fa3801eadef1116bea6 Mon Sep 17 00:00:00 2001 From: Martin Matusiak Date: Thu, 16 Jan 2014 22:34:35 +0100 Subject: [PATCH] Fixed typo in docstring. --- django/http/response.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)):