From 49fa5cbf1f8699b06a61f604eb14bf17310228ad Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 9 Jan 2006 00:40:41 +0000 Subject: [PATCH] magic-removal: Changed redirects models.py to reflect new location of Site model git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1870 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/redirects/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/redirects/models.py b/django/contrib/redirects/models.py index d4e75527e2..608a304ea2 100644 --- a/django/contrib/redirects/models.py +++ b/django/contrib/redirects/models.py @@ -1,5 +1,5 @@ from django.db import models -from django.models.core import Site +from django.contrib.sites.models import Site from django.utils.translation import gettext_lazy as _ class Redirect(models.Model):