summaryrefslogtreecommitdiff
path: root/django/http/request.py
diff options
context:
space:
mode:
authorVytis Banaitis <vytis.banaitis@gmail.com>2017-01-20 23:04:05 +0200
committerTim Graham <timograham@gmail.com>2017-01-26 08:19:27 -0500
commitd1bab24e0144d14513a1411503c95ececb425188 (patch)
tree187452bf7b66a9600abc47570ccae22e6d539ede /django/http/request.py
parent888c1e9bfe49135d049cbdcbbb0f2e97a1a0a1f5 (diff)
downloaddjango-d1bab24e0144d14513a1411503c95ececb425188.tar.gz
Refs #23919, #27778 -- Removed obsolete mentions of unicode.
Diffstat (limited to 'django/http/request.py')
-rw-r--r--django/http/request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/request.py b/django/http/request.py
index c91a51b48d..797b0414b6 100644
--- a/django/http/request.py
+++ b/django/http/request.py
@@ -354,7 +354,7 @@ class QueryDict(MultiValueDict):
will always return a mutable copy.
Both keys and values set on this class are converted from the given encoding
- (DEFAULT_CHARSET by default) to unicode.
+ (DEFAULT_CHARSET by default) to str.
"""
# These are both reset in __init__, but is specified here at the class