debug_upload.py 264 Bytes
Newer Older
David Baumgold committed
1
#pylint: disable=W0614, W0401
2 3 4 5 6 7 8
from .dev import *

FILE_UPLOAD_HANDLERS = (
    'contentstore.debug_file_uploader.DebugFileUploader',
    'django.core.files.uploadhandler.MemoryFileUploadHandler',
    'django.core.files.uploadhandler.TemporaryFileUploadHandler',
)