mirror of
https://github.com/django/django.git
synced 2025-04-14 12:24:36 +00:00
10 lines
270 B
Python
10 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
|