mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-22 22:05:50 +00:00
16 lines
397 B
Python
16 lines
397 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
# Imported for historical reasons
|
|
from wagtail import __semver__, __version__ # noqa
|
|
|
|
default_app_config = 'wagtail.core.apps.WagtailCoreAppConfig'
|
|
|
|
|
|
def setup():
|
|
import warnings
|
|
from wagtail.utils.deprecation import removed_in_next_version_warning
|
|
|
|
warnings.simplefilter("default", removed_in_next_version_warning)
|
|
|
|
|
|
setup()
|