1
0
mirror of https://github.com/django/django.git synced 2025-10-25 06:36:07 +00:00

Fixed #14184 -- Enabled running the validators in MultiValueFields. Thanks, paulcollins.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17430 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel
2012-02-04 12:48:12 +00:00
parent 954e3b4ad3
commit 9c045d00dc
2 changed files with 30 additions and 0 deletions

View File

@@ -908,6 +908,7 @@ class MultiValueField(Field):
out = self.compress(clean_data)
self.validate(out)
self.run_validators(out)
return out
def compress(self, data_list):