1
0
mirror of https://github.com/django/django.git synced 2025-07-04 01:39:20 +00:00

multi-auth: Removed SESSION_KEY from django.contrib.auth.models... it's in django.contrib.auth now.

git-svn-id: http://code.djangoproject.com/svn/django/branches/multi-auth@2890 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Joseph Kocherhans 2006-05-10 04:31:12 +00:00
parent c386867d74
commit 4aeb7b0210

View File

@ -4,8 +4,6 @@ from django.contrib.contenttypes.models import ContentType
from django.utils.translation import gettext_lazy as _ from django.utils.translation import gettext_lazy as _
import datetime import datetime
SESSION_KEY = '_auth_user_id'
def check_password(raw_password, enc_password): def check_password(raw_password, enc_password):
""" """
Returns a boolean of whether the raw_password was correct. Handles Returns a boolean of whether the raw_password was correct. Handles