Skip to content

Commit

Permalink
Fix warning when vmware is not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-duponchelle committed Nov 28, 2016
1 parent 433f620 commit 5efc568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gns3server/controller/gns3vm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def update_settings(self, settings):
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):
Expand Down

0 comments on commit 5efc568

Please sign in to comment.