Django

Code

Changeset 6875

Show
Ignore:
Timestamp:
12/04/07 00:02:56 (1 year ago)
Author:
adrian
Message:

Small docstring edit to change from [6745]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/newforms/fields.py

    r6832 r6875  
    534534        super(BooleanField, self).clean(value) 
    535535        # Explicitly check for the string 'False', which is what a hidden field 
    536         # will submit for False (since bool("True") == True we don't need to 
    537         # handle that explicitly)
     536        # will submit for False. Because bool("True") == True, we don't need to 
     537        # handle that explicitly
    538538        if value == 'False': 
    539539            return False