blob: e3638a0c069defc814ffc1b1638c09f2f1c1aa4a (
plain)
1
2
3
4
5
6
7
|
import warnings
warnings.warn(
"The django.forms.util module has been renamed. "
"Use django.forms.utils instead.", PendingDeprecationWarning)
from django.forms.utils import * # NOQA
|