Converted to entries in the ticket system. Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
10 lines
260 B
Python
10 lines
260 B
Python
from django.utils.module_loading import import_string
|
|
|
|
from .settings import setting_gpg_path
|
|
|
|
SETTING_GPG_BACKEND = 'mayan.apps.django_gpg.classes.PythonGNUPGBackend'
|
|
|
|
gpg_backend = import_string(SETTING_GPG_BACKEND)(
|
|
binary_path=setting_gpg_path.value
|
|
)
|