diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2011-01-15 06:12:56 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2011-01-15 06:12:56 +0000 |
| commit | df5c01b8c545b4e48ac48c51237566bd9200a4cf (patch) | |
| tree | db34ce0c3f8f7c998f17af98fbcd3a99413f16d7 /django/core | |
| parent | 11997218eeed02c8be7a81b87db321464839a2cf (diff) | |
Fixed #15079 -- Added a missing import in the cache infrastructure. Thanks to jaylett for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15214 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core')
| -rw-r--r-- | django/core/cache/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/core/cache/__init__.py b/django/core/cache/__init__.py index 4cc742dedf..a30aa390ac 100644 --- a/django/core/cache/__init__.py +++ b/django/core/cache/__init__.py @@ -18,6 +18,7 @@ from django.conf import settings from django.core import signals from django.core.cache.backends.base import ( InvalidCacheBackendError, CacheKeyWarning, BaseCache) +from django.core.exceptions import ImproperlyConfigured from django.utils import importlib try: |
