From 7f77c6688809b7b60215b1be482de0b1e439c47f Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Wed, 13 Apr 2016 09:38:58 +0200 Subject: [PATCH] Support VMware VM in non standard location for fusion --- gns3server/modules/vmware/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/modules/vmware/__init__.py b/gns3server/modules/vmware/__init__.py index 5a112019..29150421 100644 --- a/gns3server/modules/vmware/__init__.py +++ b/gns3server/modules/vmware/__init__.py @@ -618,7 +618,7 @@ class VMware(BaseManager): yield from self.check_vmware_version() inventory_path = self.get_vmware_inventory_path() - if os.path.exists(inventory_path) and self.host_type == "ws": + if os.path.exists(inventory_path) and self.host_type != "player": # inventory may exist for VMware player if VMware workstation has been previously installed return self._get_vms_from_inventory(inventory_path) else: