blob: 9002c126834a04d41454d66db9c1131e6f6c5575 (
plain)
1
2
3
4
5
6
|
from django.core.files.storage.filesystem import FileSystemStorage
class NoReadFileSystemStorage(FileSystemStorage):
def open(self, *args, **kwargs):
raise AssertionError("This storage class does not support reading.")
|