コード例 #1
0
ファイル: metadata.py プロジェクト: SeiryuZ/django-thumbnails
def get_backend():
    if not conf.METADATA.get('BACKEND'):
        raise ValueError('BACKEND for STORAGE must be defined')
    metadata = import_attribute(conf.METADATA['BACKEND'])
    return metadata()
コード例 #2
0
def get_backend():
    if not conf.METADATA.get('BACKEND'):
        raise ValueError('BACKEND for STORAGE must be defined')
    metadata = import_attribute(conf.METADATA['BACKEND'])
    return metadata()
コード例 #3
0
def get_backend():
    if not conf.STORAGE.get('BACKEND'):
        raise ValueError('BACKEND for STORAGE must be defined')
    backend = import_attribute(conf.STORAGE['BACKEND'])
    return backend()