1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-14 04:19:00 +00:00

Fix path of VMinventory for fusion

Fix #313
This commit is contained in:
Julien Duponchelle 2015-09-17 11:04:24 +02:00
parent 802d0628bd
commit 3e71529702

View File

@ -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")