mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Modified BooleanField's to_python method to play nice with encode()ed strings.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3372 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
@@ -364,8 +364,8 @@ class BooleanField(Field):
|
|||||||
|
|
||||||
def to_python(self, value):
|
def to_python(self, value):
|
||||||
if value in (True, False): return value
|
if value in (True, False): return value
|
||||||
if value is 't' or value is 'True': return True
|
if value in ('t', 'True'): return True
|
||||||
if value is 'f' or value is 'False': return False
|
if value in ('f', 'False'): return False
|
||||||
raise validators.ValidationError, gettext("This value must be either True or False.")
|
raise validators.ValidationError, gettext("This value must be either True or False.")
|
||||||
|
|
||||||
def get_manipulator_field_objs(self):
|
def get_manipulator_field_objs(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user