blob: f106439f12dcb1516096dde420602cc2156cec81 (
plain)
1
2
3
4
5
6
7
8
9
|
import warnings
from django.template.context_processors import * # NOQA
from django.utils.deprecation import RemovedInDjango110Warning
warnings.warn(
"django.core.context_processors is deprecated in favor of "
"django.template.context_processors.",
RemovedInDjango110Warning, stacklevel=2)
|