datatracker/ietf/utils/storage.py
Henrik Levkowetz 14a4ea177c Merged in ^/personal/rjs/6.21.1.dev0@11257
- Legacy-Id: 11259
2016-06-01 16:37:01 +00:00

9 lines
281 B
Python

from django.core.files.storage import FileSystemStorage
class NoLocationMigrationFileSystemStorage(FileSystemStorage):
def deconstruct(obj):
path, args, kwargs = FileSystemStorage.deconstruct(obj)
kwargs["location"] = None
return (path, args, kwargs)