2014-12-03 06:23:51 +08:00
|
|
|
import warnings
|
2005-12-24 12:41:10 +08:00
|
|
|
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.template.context_processors import * # NOQA
|
2014-12-03 06:23:51 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango20Warning
|
2005-12-24 12:41:10 +08:00
|
|
|
|
2014-12-03 06:23:51 +08:00
|
|
|
warnings.warn(
|
|
|
|
"django.core.context_processors is deprecated in favor of "
|
|
|
|
"django.template.context_processors.",
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|