mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-01 04:38:12 +00:00
Improve error when default vm directory is not found
This commit is contained in:
parent
fbd3a54877
commit
7d35d1a34f
@ -681,7 +681,7 @@ class VMware(BaseManager):
|
|||||||
if "prefvmx.defaultvmpath" in pairs:
|
if "prefvmx.defaultvmpath" in pairs:
|
||||||
default_vm_path = pairs["prefvmx.defaultvmpath"]
|
default_vm_path = pairs["prefvmx.defaultvmpath"]
|
||||||
if not os.path.isdir(default_vm_path):
|
if not os.path.isdir(default_vm_path):
|
||||||
raise VMwareError('Could not find the default VM directory: "{}"'.format(default_vm_path))
|
raise VMwareError('Could not find the default VM directory: "{}". Due to limitation of the free version of VMware Workstation you need to import the GNS3 VM in the default location.'.format(default_vm_path))
|
||||||
vmware_vms = self._get_vms_from_directory(default_vm_path)
|
vmware_vms = self._get_vms_from_directory(default_vm_path)
|
||||||
|
|
||||||
# looks for VMX paths in the preferences file in case not all VMs are in the default directory
|
# looks for VMX paths in the preferences file in case not all VMs are in the default directory
|
||||||
|
Loading…
Reference in New Issue
Block a user