from django.core.files.base import ContentFile, File
from django.core.files.storage import FileSystemStorage
+from django.utils.deconstruct import deconstructible
+@deconstructible
class GzipFileSystemStorage(FileSystemStorage):
def _open(self, name, mode='rb'):
"""TODO: This is good for reading; what about writing?"""