From 3e52ae542bd09380d1048f3064603bd515cdf707 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Thu, 30 Jan 2014 14:30:32 +0000 Subject: [PATCH] rename django-cluster to django-modelcluster --- wagtail/wagtailadmin/edit_handlers.py | 2 +- wagtail/wagtailcore/models.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wagtail/wagtailadmin/edit_handlers.py b/wagtail/wagtailadmin/edit_handlers.py index bc0dd3a2e8..e74645ecc2 100644 --- a/wagtail/wagtailadmin/edit_handlers.py +++ b/wagtail/wagtailadmin/edit_handlers.py @@ -13,7 +13,7 @@ import copy from wagtail.wagtailcore.models import Page from wagtail.wagtailcore.util import camelcase_to_underscore from wagtail.wagtailcore.fields import RichTextArea -from cluster.forms import ClusterForm, ClusterFormMetaclass +from modelcluster.forms import ClusterForm, ClusterFormMetaclass from taggit.forms import TagWidget import re diff --git a/wagtail/wagtailcore/models.py b/wagtail/wagtailcore/models.py index 3f44bfa672..71e1474481 100644 --- a/wagtail/wagtailcore/models.py +++ b/wagtail/wagtailcore/models.py @@ -7,7 +7,7 @@ from django.core.cache import cache from django.contrib.contenttypes.models import ContentType from django.contrib.auth.models import Group from treebeard.mp_tree import MP_Node -from cluster.models import ClusterableModel +from modelcluster.models import ClusterableModel from wagtail.wagtailsearch import Indexed, Searcher from wagtail.wagtailcore.util import camelcase_to_underscore