From 14671affc346e70f6bb24117fd4e6af72895864b Mon Sep 17 00:00:00 2001 From: petedmarsh Date: Tue, 11 Apr 2017 17:44:52 +0100 Subject: Fixed #28064 -- Removed double-quoting of key names in MultiValueDictKeyError. --- django/utils/datastructures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/utils') 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: -- cgit v1.3