Throw exception if mq plugin registration is not list

This commit is contained in:
Brandon Myers 2020-02-10 11:17:21 -06:00
Родитель f6493d4535
Коммит 31c530cfec
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8AA79AD83045BBC7
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -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: