Added some more msdp commands

This commit is contained in:
Griatch 2013-10-17 20:15:48 +02:00
parent d7fc0c7e16
commit 6f8d1f9ce1
2 changed files with 5 additions and 25 deletions

View file

@ -37,7 +37,7 @@ _GA = object.__getattribute__
_DA = object.__delattr__
# load from plugin module
_OOB_FUNCS = dict((key, func) for key, func in all_from_module(settings.OOB_PLUGIN_MODULE).items() if isfunction(func))
_OOB_FUNCS = dict((key.lower(), func) for key, func in all_from_module(settings.OOB_PLUGIN_MODULE).items() if isfunction(func))
_OOB_ERROR = _OOB_FUNCS.get("oob_error", None)