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