[FIX] check_addons_exist: remove blank addons_path
This commit is contained in:
parent
5ba826823f
commit
87367d647e
1 changed files with 2 additions and 2 deletions
|
|
@ -67,8 +67,8 @@ def main():
|
||||||
_logger.error(f"Missing section 'options' in '{config.config}'")
|
_logger.error(f"Missing section 'options' in '{config.config}'")
|
||||||
return -1
|
return -1
|
||||||
|
|
||||||
lst_addons_path = addons_path.split(",")
|
lst_addons_path = addons_path.strip(",").split(",")
|
||||||
lst_module = config.module.split(",")
|
lst_module = config.module.strip(",").split(",")
|
||||||
|
|
||||||
dct_module_exist = defaultdict(list)
|
dct_module_exist = defaultdict(list)
|
||||||
dct_module_exist_empty = defaultdict(list)
|
dct_module_exist_empty = defaultdict(list)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue