mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-12 19:38:57 +00:00
parent
3c384a7bf0
commit
89bbe0ef1b
@ -90,8 +90,10 @@ class VMwareGNS3VM(BaseGNS3VM):
|
||||
"""
|
||||
List all VMware VMs
|
||||
"""
|
||||
|
||||
return (yield from self._vmware_manager.list_vms())
|
||||
try:
|
||||
return (yield from self._vmware_manager.list_vms())
|
||||
except VMwareError as e:
|
||||
raise GNS3VMError("Could not list VMware VMs: {}".format(str(e)))
|
||||
|
||||
@asyncio.coroutine
|
||||
def start(self):
|
||||
|
Loading…
Reference in New Issue
Block a user