diff --git a/django/template/context.py b/django/template/context.py
index 1f13659..0ccb5fa 100644
a
|
b
|
|
1 | | from django.conf import settings |
2 | 1 | from django.core.exceptions import ImproperlyConfigured |
3 | 2 | from django.utils.importlib import import_module |
4 | 3 | |
… |
… |
class Context(object):
|
71 | 70 | # This is a function rather than module-level procedural code because we only |
72 | 71 | # want it to execute if somebody uses RequestContext. |
73 | 72 | def get_standard_processors(): |
| 73 | from django.conf import settings |
74 | 74 | global _standard_context_processors |
75 | 75 | if _standard_context_processors is None: |
76 | 76 | processors = [] |