Django

Code

Changeset 1853

Show
Ignore:
Timestamp:
01/07/06 23:10:51 (3 years ago)
Author:
adrian
Message:

Fixed #1185 -- Fixed Python 2.4 bug in Django authentication mod_python handler. Thanks, Brian Ray

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/AUTHORS

    r1834 r1853  
    8282    Luke Plant <http://lukeplant.me.uk/> 
    8383    plisk 
     84    Brian Ray <http://brianray.chipy.org/> 
    8485    Oliver Rutherfurd <http://rutherfurd.net/> 
    8586    David Schein 
  • django/trunk/django/contrib/auth/handlers/modpython.py

    r1500 r1853  
    1414 
    1515    # check for PythonOptions 
    16     _str_to_bool = lambda s: s.lower() in '1', 'true', 'on', 'yes' 
     16    _str_to_bool = lambda s: s.lower() in ('1', 'true', 'on', 'yes') 
    1717 
    1818    options = req.get_options()