summaryrefslogtreecommitdiff
path: root/django/core/cache
diff options
context:
space:
mode:
Diffstat (limited to 'django/core/cache')
-rw-r--r--django/core/cache/backends/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/cache/backends/base.py b/django/core/cache/backends/base.py
index b5661891d6..a0ed8275f9 100644
--- a/django/core/cache/backends/base.py
+++ b/django/core/cache/backends/base.py
@@ -2,7 +2,7 @@
import time
import warnings
-from django.core.exceptions import DjangoRuntimeWarning, ImproperlyConfigured
+from django.core.exceptions import ImproperlyConfigured
from django.utils.module_loading import import_string
@@ -10,7 +10,7 @@ class InvalidCacheBackendError(ImproperlyConfigured):
pass
-class CacheKeyWarning(DjangoRuntimeWarning):
+class CacheKeyWarning(RuntimeWarning):
pass