13 lines
334 B
Python
13 lines
334 B
Python
import warnings
|
|
|
|
from django.forms.widgets import SelectDateWidget
|
|
from django.utils.deprecation import RemovedInDjango20Warning
|
|
|
|
__all__ = ['SelectDateWidget']
|
|
|
|
|
|
warnings.warn(
|
|
"django.forms.extras is deprecated. You can find "
|
|
"SelectDateWidget in django.forms.widgets instead.",
|
|
RemovedInDjango20Warning, stacklevel=2)
|