Skip to content

Commit

Permalink
Merge remote-tracking branch 'qubesos/pr/69'
Browse files Browse the repository at this point in the history
* qubesos/pr/69:
  Is this bug finally dead
  • Loading branch information
marmarek committed Feb 22, 2018
2 parents 33e77d6 + e95be8a commit e5c5fb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qubesmanager/qube_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def check_if_vm_has_shutdown(self):
self.tr("Wait another {0} seconds...").format(
self.shutdown_time / 1000))
if reply == 0:
vm.force_shutdown()
vm.kill()
self.restart_vm_if_needed()
else:
self.shutdown_started = datetime.now()
Expand Down Expand Up @@ -841,7 +841,7 @@ def action_killvm_triggered(self):

if reply == QtGui.QMessageBox.Yes:
try:
vm.force_shutdown()
vm.kill()
except exc.QubesException as ex:
QtGui.QMessageBox.critical(
None, self.tr("Error while killing Qube!"),
Expand Down

0 comments on commit e5c5fb6

Please sign in to comment.