mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-13 20:08:55 +00:00
Fix warning when vmware is not installed
This commit is contained in:
parent
433f620905
commit
5efc5684ba
@ -191,7 +191,7 @@ class GNS3VM:
|
||||
yield from self.start()
|
||||
else:
|
||||
# When user fix something on his system and try again
|
||||
if not self.current_engine().running and self.enable:
|
||||
if self.enable and not self.current_engine().running:
|
||||
yield from self.start()
|
||||
|
||||
def _get_engine(self, engine):
|
||||
|
Loading…
Reference in New Issue
Block a user