Skip to content

Commit

Permalink
Make pylint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Augsch123 committed Apr 29, 2023
1 parent 3f5a7f4 commit 6401b12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qubesmanager/qube_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1414,7 +1414,9 @@ def action_startvm_tools_install_triggered(self):
self.tr("QWT not found"),
self.tr("'qubes-windows-tools' is not installed in dom0."))
for vm_info in self.get_selected_vms():
qvm_start.main(['--cdrom', 'dom0:/usr/lib/qubes/qubes-windows-tools.iso', vm_info.vm.name])
vm = vm_info.vm
qvm_start.main(['--cdrom',
'dom0:/usr/lib/qubes/qubes-windows-tools.iso', vm.name])

@pyqtSlot(name='on_action_pausevm_triggered')
def action_pausevm_triggered(self):
Expand Down

0 comments on commit 6401b12

Please sign in to comment.