From 2b8f54fa33b98d914bd3a8d8f4c66f8004335452 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 9 Jan 2006 00:33:13 +0000 Subject: [PATCH] magic-removal: Changed flatpages models.py to reflect new location of Site model git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1869 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/flatpages/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/flatpages/models.py b/django/contrib/flatpages/models.py index 9378e4d99d..849281510e 100644 --- a/django/contrib/flatpages/models.py +++ b/django/contrib/flatpages/models.py @@ -1,6 +1,6 @@ from django.core import validators 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 FlatPage(models.Model):