2015-01-26 11:28:57 +08:00
|
|
|
import warnings
|
|
|
|
|
|
|
|
from django.forms.widgets import SelectDateWidget
|
2015-06-23 01:54:35 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango20Warning
|
2013-10-18 19:25:30 +08:00
|
|
|
|
|
|
|
__all__ = ['SelectDateWidget']
|
2015-01-26 11:28:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
warnings.warn(
|
|
|
|
"django.forms.extras is deprecated. You can find "
|
|
|
|
"SelectDateWidget in django.forms.widgets instead.",
|
2015-06-23 01:54:35 +08:00
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|