From 3e715297026c9b2dfabf5e3d7c2cb0ef4ea60b9c Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Thu, 17 Sep 2015 11:04:24 +0200 Subject: [PATCH] Fix path of VMinventory for fusion Fix #313 --- 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 839eceea..d54bb613 100644 --- a/gns3server/modules/vmware/__init__.py +++ b/gns3server/modules/vmware/__init__.py @@ -465,7 +465,7 @@ class VMware(BaseManager): if sys.platform.startswith("win"): return os.path.expandvars(r"%APPDATA%\Vmware\Inventory.vmls") elif sys.platform.startswith("darwin"): - return os.path.expanduser("~/Library/Application\ Support/VMware Fusion/vmInventory") + return os.path.expanduser("~/Library/Application Support/VMware Fusion/vmInventory") else: return os.path.expanduser("~/.vmware/inventory.vmls")