Added 'caches' to django.core.cache.__all__.

This commit is contained in:
Wang Dongxiao 2018-05-28 21:14:46 +08:00 committed by Tim Graham
parent 6104875a2c
commit 0914a2003b
1 changed files with 1 additions and 1 deletions

View File

@ -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',
]