1
0
mirror of https://github.com/django/django.git synced 2025-10-27 07:36:08 +00:00
Files
django/django/core/context_processors.py
2015-02-09 14:24:06 -05:00

10 lines
303 B
Python

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)