Commit 9ac3905f authored by Gary Wilson Jr's avatar Gary Wilson Jr
Browse files

Fixed #10079 -- Moved settings import inside the function that uses it so that...

Fixed #10079 -- Moved settings import inside the function that uses it so that the module can be imported without needing settings, thanks kcarnold and mcroydon.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@10209 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent ef933f16
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
from django.conf import settings
from django.core.exceptions import ImproperlyConfigured
from django.utils.importlib import import_module

@@ -71,6 +70,7 @@ class Context(object):
# This is a function rather than module-level procedural code because we only
# want it to execute if somebody uses RequestContext.
def get_standard_processors():
    from django.conf import settings
    global _standard_context_processors
    if _standard_context_processors is None:
        processors = []