mirror of
https://github.com/Hopiu/django.git
synced 2026-03-27 19:30:24 +00:00
9 lines
270 B
Python
9 lines
270 B
Python
import warnings
|
|
|
|
from django.utils.deprecation import RemovedInDjango19Warning
|
|
|
|
warnings.warn(
|
|
"The django.forms.util module has been renamed. "
|
|
"Use django.forms.utils instead.", RemovedInDjango19Warning, stacklevel=2)
|
|
|
|
from django.forms.utils import * # NOQA
|