1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.6.x] Fixed #15625 -- Made message in MultiValueDictKeyError less verbose.

Thanks margieroginski for the suggestion.

Backport of 893198509e from master
This commit is contained in:
Tim Graham
2013-09-16 16:20:29 -04:00
parent 325b03ea84
commit 275497c570
2 changed files with 2 additions and 6 deletions

View File

@@ -298,7 +298,7 @@ class MultiValueDict(dict):
try:
list_ = super(MultiValueDict, self).__getitem__(key)
except KeyError:
raise MultiValueDictKeyError("Key %r not found in %r" % (key, self))
raise MultiValueDictKeyError(repr(key))
try:
return list_[-1]
except IndexError: