diff --git a/django/template/context.py b/django/template/context.py
index 8f16a95..9623dd1 100644
a
|
b
|
|
1 | | from django.conf import settings |
2 | | from django.core.exceptions import ImproperlyConfigured |
3 | | |
4 | 1 | _standard_context_processors = None |
5 | 2 | |
6 | 3 | class ContextPopException(Exception): |
… |
… |
class Context(object):
|
70 | 67 | # This is a function rather than module-level procedural code because we only |
71 | 68 | # want it to execute if somebody uses RequestContext. |
72 | 69 | def get_standard_processors(): |
| 70 | from django.conf import settings |
| 71 | from django.core.exceptions import ImproperlyConfigured |
73 | 72 | global _standard_context_processors |
74 | 73 | if _standard_context_processors is None: |
75 | 74 | processors = [] |