1
0
mirror of https://github.com/django/django.git synced 2025-03-10 17:32:41 +00:00

Fixed #29857 -- Added get_storage_class to django.core.files.storage.__all__.

This commit is contained in:
Tim Graham 2018-10-17 09:03:51 -04:00
parent bc7dd8490b
commit 4268d275b8

View File

@ -16,7 +16,10 @@ from django.utils.functional import LazyObject, cached_property
from django.utils.module_loading import import_string
from django.utils.text import get_valid_filename
__all__ = ('Storage', 'FileSystemStorage', 'DefaultStorage', 'default_storage')
__all__ = (
'Storage', 'FileSystemStorage', 'DefaultStorage', 'default_storage',
'get_storage_class',
)
class Storage: