From 97bcca5d29b5702e1e5f208f87875d404d2745f8 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 16 Dec 2005 23:26:19 +0000 Subject: [PATCH] magic-removal: Fixed #1074. Added missing import to the top of django.models.auth. Thanks, Joseph Kocherhans git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1711 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/models/auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/models/auth.py b/django/models/auth.py index 3f82f7e82f..14974c97d4 100644 --- a/django/models/auth.py +++ b/django/models/auth.py @@ -2,6 +2,7 @@ from django.core import validators from django.db import models from django.models import core from django.utils.translation import gettext_lazy as _ +import datetime SESSION_KEY = '_auth_user_id'