From 4aeb7b02107bdc2842e9e9c82b4f2369cb3ca2bf Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Wed, 10 May 2006 04:31:12 +0000 Subject: [PATCH] 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 --- django/contrib/auth/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/contrib/auth/models.py b/django/contrib/auth/models.py index 00a6f0b097..40037b96b4 100644 --- a/django/contrib/auth/models.py +++ b/django/contrib/auth/models.py @@ -4,8 +4,6 @@ from django.contrib.contenttypes.models import ContentType from django.utils.translation import gettext_lazy as _ import datetime -SESSION_KEY = '_auth_user_id' - def check_password(raw_password, enc_password): """ Returns a boolean of whether the raw_password was correct. Handles