From c5e944a7e273e40723a0240e41c413ea971329f5 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Mon, 16 Jan 2006 15:23:15 +0000 Subject: [PATCH] magic-removal: changed explicit settings import to qualified settings import in django.core.cache git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2003 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/cache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/core/cache.py b/django/core/cache.py index d88297deec..9e6a695d60 100644 --- a/django/core/cache.py +++ b/django/core/cache.py @@ -498,5 +498,5 @@ def get_cache(backend_uri): return _BACKENDS[scheme](host, params) -from django.conf.settings import CACHE_BACKEND -cache = get_cache(CACHE_BACKEND) +from django.conf import settings +cache = get_cache(settings.CACHE_BACKEND)