Files
mayan-edms/mayan/apps/converter/runtime.py
2015-06-07 05:29:31 -04:00

11 lines
249 B
Python

from __future__ import unicode_literals
import logging
from django.utils.module_loading import import_string
from .settings import GRAPHICS_BACKEND
logger = logging.getLogger(__name__)
backend = converter_class = import_string(GRAPHICS_BACKEND)