Author: russellm
Date: 2011-01-15 00:12:56 -0600 (Sat, 15 Jan 2011)
New Revision: 15214

Modified:
   django/trunk/django/core/cache/__init__.py
Log:
Fixed #15079 -- Added a missing import in the cache infrastructure. Thanks to 
jaylett for the report.

Modified: django/trunk/django/core/cache/__init__.py
===================================================================
--- django/trunk/django/core/cache/__init__.py  2011-01-15 06:06:34 UTC (rev 
15213)
+++ django/trunk/django/core/cache/__init__.py  2011-01-15 06:12:56 UTC (rev 
15214)
@@ -18,6 +18,7 @@
 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:

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to