diff options
| author | Tim Graham <timograham@gmail.com> | 2017-07-14 10:07:18 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-07-14 12:06:06 -0400 |
| commit | 2e9ada15510e5729c331d7383fc9827e9082a8a9 (patch) | |
| tree | 0099af2c8e317ffd6c321a78944b57130a08c004 /django/core/cache/backends/base.py | |
| parent | fc2dee6908dee70c98453b109180831baac4d9da (diff) | |
Fixed #28397 -- Removed django.core.exceptions.DjangoRuntimeWarning.
Diffstat (limited to 'django/core/cache/backends/base.py')
| -rw-r--r-- | django/core/cache/backends/base.py | 4 |
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 |
