mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-12 01:03:11 +00:00
7 lines
181 B
Python
7 lines
181 B
Python
import warnings
|
|
|
|
warnings.warn(
|
|
"The wagtail.wagtailcore.util module has been renamed. "
|
|
"Use wagtail.wagtailcore.utils instead.", DeprecationWarning)
|
|
|
|
from .utils import *
|