8 lines
186 B
Python
8 lines
186 B
Python
|
import warnings
|
||
|
|
||
|
warnings.warn(
|
||
|
"The django.forms.util module has been renamed. "
|
||
|
"Use django.forms.utils instead.", PendingDeprecationWarning)
|
||
|
|
||
|
from django.forms.utils import *
|