diff options
| author | Wang Dongxiao <me@wangdongxiao.com> | 2018-05-28 21:14:46 +0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-05-28 09:14:46 -0400 |
| commit | 0914a2003b1ad50f1d641709da86c14826bf063b (patch) | |
| tree | 0dddea5b3fef701e7c3106d0f7841cec772347bc | |
| parent | 6104875a2cc797bbd1254aa61f22a9b03d652128 (diff) | |
Added 'caches' to django.core.cache.__all__.
| -rw-r--r-- | django/core/cache/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/cache/__init__.py b/django/core/cache/__init__.py index 349ea86480..a6b956fdf2 100644 --- a/django/core/cache/__init__.py +++ b/django/core/cache/__init__.py @@ -22,7 +22,7 @@ from django.core.cache.backends.base import ( from django.utils.module_loading import import_string __all__ = [ - 'cache', 'DEFAULT_CACHE_ALIAS', 'InvalidCacheBackendError', + 'cache', 'caches', 'DEFAULT_CACHE_ALIAS', 'InvalidCacheBackendError', 'CacheKeyWarning', 'BaseCache', ] |
