summaryrefslogtreecommitdiff
path: root/django/core/context_processors.py
blob: 19cc8b4def1dc98f37d6f4cdbc4e7308fbd31b7f (plain)
1
2
3
4
5
6
7
8
9
10
import warnings

from django.template.context_processors import *    # NOQA
from django.utils.deprecation import RemovedInDjango20Warning


warnings.warn(
    "django.core.context_processors is deprecated in favor of "
    "django.template.context_processors.",
    RemovedInDjango20Warning, stacklevel=2)