mirror of https://github.com/django/django.git
Merge pull request #2048 from loic/ValidationError.message_dict
Trigger AttributeError in ValidationError.message_dict when error_dict is missing.
This commit is contained in:
commit
c78bd9eff2
|
@ -123,6 +123,10 @@ class ValidationError(Exception):
|
|||
|
||||
@property
|
||||
def message_dict(self):
|
||||
# Trigger an AttributeError if this ValidationError
|
||||
# doesn't have an error_dict.
|
||||
getattr(self, 'error_dict')
|
||||
|
||||
return dict(self)
|
||||
|
||||
@property
|
||||
|
|
Loading…
Reference in New Issue