summaryrefslogtreecommitdiff
path: root/django/utils/datastructures.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils/datastructures.py')
-rw-r--r--django/utils/datastructures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/datastructures.py b/django/utils/datastructures.py
index aba5bcf1c2..a21de8a74a 100644
--- a/django/utils/datastructures.py
+++ b/django/utils/datastructures.py
@@ -76,7 +76,7 @@ class MultiValueDict(dict):
try:
list_ = super().__getitem__(key)
except KeyError:
- raise MultiValueDictKeyError(repr(key))
+ raise MultiValueDictKeyError(key)
try:
return list_[-1]
except IndexError: