1
0
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:
Julien Duponchelle 2016-11-28 20:28:19 +01:00
parent 433f620905
commit 5efc5684ba
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

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