fix exception handling

main
Marshall Hallenbeck 2023-09-20 12:24:20 -04:00
parent bdf0fe27e8
commit ee1e7b0d52
1 changed files with 2 additions and 1 deletions

View File

@ -140,6 +140,7 @@ class ModuleLoader:
module_path = path_join(path, module)
module_data = self.get_module_info(module_path)
modules.update(module_data)
except:
except Exception as e:
self.logger.debug(f"Error loading module {module}: {e}")
pass
return modules