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
|
2015-06-23 01:54:35 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango110Warning
|
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.",
|
2015-06-23 01:54:35 +08:00
|
|
|
RemovedInDjango110Warning, stacklevel=2)
|