Rename loader to load_plugin

This commit is contained in:
Unrud 2020-01-15 00:32:36 +01:00
parent a8a1fc470b
commit 0cd95f8a39
5 changed files with 6 additions and 5 deletions

View file

@ -21,7 +21,7 @@ from importlib import import_module
from radicale.log import logger
def loader(internal_types, module_name, class_name, configuration):
def load_plugin(internal_types, module_name, class_name, configuration):
type_ = configuration.get(module_name, "type")
if type_ in internal_types:
module = "radicale.%s.%s" % (module_name, type_)