mirror of
https://github.com/Hopiu/django.git
synced 2026-05-08 15:44:43 +00:00
9 lines
305 B
Python
9 lines
305 B
Python
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)
|