diff --git a/gns3server/modules/vmware/__init__.py b/gns3server/modules/vmware/__init__.py index 36567fde..414eecb0 100644 --- a/gns3server/modules/vmware/__init__.py +++ b/gns3server/modules/vmware/__init__.py @@ -80,7 +80,7 @@ class VMware(BaseManager): vmrun_vix = os.path.expandvars(r"%PROGRAMFILES(X86)%\VMware\VMware VIX\vmrun.exe") if os.path.exists(vmrun_ws): vmrun_path = vmrun_ws - elif os.path.exist(vmrun_vix): + elif os.path.exists(vmrun_vix): vmrun_path = vmrun_vix elif sys.platform.startswith("darwin"): vmrun_path = "/Applications/VMware Fusion.app/Contents/Library/vmrun"