diff --git a/gns3server/modules/base_vm.py b/gns3server/modules/base_vm.py index 2c93860c..5775182f 100644 --- a/gns3server/modules/base_vm.py +++ b/gns3server/modules/base_vm.py @@ -308,6 +308,9 @@ class BaseVM: path = self._manager.config.get_section_config("Server").get("ubridge_path", "ubridge") if path == "ubridge": path = shutil.which("ubridge") + + if path is None: + raise VMError("uBridge is not installed") return path @asyncio.coroutine