mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-09 07:54:44 +00:00
10 lines
254 B
Python
10 lines
254 B
Python
import warnings
|
|
|
|
from wagtail.utils.deprecation import RemovedInWagtail06Warning
|
|
|
|
|
|
warnings.warn(
|
|
"The wagtail.wagtailcore.util module has been renamed. "
|
|
"Use wagtail.wagtailcore.utils instead.", RemovedInWagtail06Warning)
|
|
|
|
from .utils import *
|