Merge branch 'wagtail-separation' into develop

pull/3/head
Matt Westcott 2014-01-30 14:33:10 +00:00
commit 561835114f
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -13,7 +13,7 @@ import copy
from wagtail.wagtailcore.models import Page from wagtail.wagtailcore.models import Page
from wagtail.wagtailcore.util import camelcase_to_underscore from wagtail.wagtailcore.util import camelcase_to_underscore
from wagtail.wagtailcore.fields import RichTextArea from wagtail.wagtailcore.fields import RichTextArea
from cluster.forms import ClusterForm, ClusterFormMetaclass from modelcluster.forms import ClusterForm, ClusterFormMetaclass
from taggit.forms import TagWidget from taggit.forms import TagWidget
import re import re

Wyświetl plik

@ -7,7 +7,7 @@ from django.core.cache import cache
from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.models import ContentType
from django.contrib.auth.models import Group from django.contrib.auth.models import Group
from treebeard.mp_tree import MP_Node 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.wagtailsearch import Indexed, Searcher
from wagtail.wagtailcore.util import camelcase_to_underscore from wagtail.wagtailcore.util import camelcase_to_underscore