Merge pull request #2613 from Ian-Foote/python2-validators

Ensure validators are new-style classes on python2
This commit is contained in:
José Padilla 2015-02-27 11:42:41 -04:00
commit f09d28e6d6

View File

@ -13,7 +13,7 @@ from rest_framework.exceptions import ValidationError
from rest_framework.utils.representation import smart_repr from rest_framework.utils.representation import smart_repr
class UniqueValidator: class UniqueValidator(object):
""" """
Validator that corresponds to `unique=True` on a model field. Validator that corresponds to `unique=True` on a model field.
@ -67,7 +67,7 @@ class UniqueValidator:
)) ))
class UniqueTogetherValidator: class UniqueTogetherValidator(object):
""" """
Validator that corresponds to `unique_together = (...)` on a model class. Validator that corresponds to `unique_together = (...)` on a model class.
@ -155,7 +155,7 @@ class UniqueTogetherValidator:
)) ))
class BaseUniqueForValidator: class BaseUniqueForValidator(object):
message = None message = None
missing_message = _('This field is required.') missing_message = _('This field is required.')