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

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1853 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-08 05:10:51 +00:00
parent 491a152c11
commit 0c548516bc
2 changed files with 2 additions and 1 deletions

View File

@ -81,6 +81,7 @@ answer newbie questions, and generally made Django that much better:
phaedo <http://phaedo.cx/>
Luke Plant <http://lukeplant.me.uk/>
plisk
Brian Ray <http://brianray.chipy.org/>
Oliver Rutherfurd <http://rutherfurd.net/>
David Schein
sopel

View File

@ -13,7 +13,7 @@ def authenhandler(req, **kwargs):
from django.models.auth import users
# check for PythonOptions
_str_to_bool = lambda s: s.lower() in '1', 'true', 'on', 'yes'
_str_to_bool = lambda s: s.lower() in ('1', 'true', 'on', 'yes')
options = req.get_options()
permission_name = options.get('DjangoPermissionName', None)