зеркало из https://github.com/mozilla/MozDef.git
Throw exception if mq plugin registration is not list
This commit is contained in:
Родитель
f6493d4535
Коммит
31c530cfec
|
@ -69,6 +69,8 @@ def registerPlugins():
|
|||
if 'message' in dir(module):
|
||||
mclass = module.message()
|
||||
mreg = mclass.registration
|
||||
if type(mreg) != list:
|
||||
raise ImportError('Plugin {0} registration needs to be a list'.format(mname))
|
||||
if 'priority' in dir(mclass):
|
||||
mpriority = mclass.priority
|
||||
else:
|
||||
|
|
Загрузка…
Ссылка в новой задаче