Small docstring edit to change from [6745]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6875 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-12-04 06:02:56 +00:00
parent b34b1a89b2
commit 31a17467eb
1 changed files with 2 additions and 2 deletions

View File

@ -533,8 +533,8 @@ class BooleanField(Field):
"""Returns a Python boolean object.""" """Returns a Python boolean object."""
super(BooleanField, self).clean(value) super(BooleanField, self).clean(value)
# Explicitly check for the string 'False', which is what a hidden field # Explicitly check for the string 'False', which is what a hidden field
# will submit for False (since bool("True") == True we don't need to # will submit for False. Because bool("True") == True, we don't need to
# handle that explicitly). # handle that explicitly.
if value == 'False': if value == 'False':
return False return False
return bool(value) return bool(value)