Remove debug print
This commit is contained in:
parent
29ca4eb3a8
commit
11cc8b7a67
@ -139,7 +139,6 @@ class BackupVMsWindow(ui_backupdlg.Ui_Backup, multiselectwidget.QtGui.QWizard):
|
|||||||
dispatcher.add_handler('backup-progress', self.on_backup_progress)
|
dispatcher.add_handler('backup-progress', self.on_backup_progress)
|
||||||
|
|
||||||
def on_backup_progress(self, __submitter, _event, **kwargs):
|
def on_backup_progress(self, __submitter, _event, **kwargs):
|
||||||
print(kwargs['progress'])
|
|
||||||
self.progress_bar.setValue(int(float(kwargs['progress'])))
|
self.progress_bar.setValue(int(float(kwargs['progress'])))
|
||||||
|
|
||||||
|
|
||||||
|
@ -835,8 +835,6 @@ class VmManagerWindow(ui_qubemanager.Ui_VmManagerWindow, QtGui.QMainWindow):
|
|||||||
vm = self.get_selected_vm()
|
vm = self.get_selected_vm()
|
||||||
try:
|
try:
|
||||||
vm.pause()
|
vm.pause()
|
||||||
self.vms_in_table[vm.qid].update()
|
|
||||||
self.table_selection_changed()
|
|
||||||
except exc.QubesException as ex:
|
except exc.QubesException as ex:
|
||||||
QtGui.QMessageBox.warning(
|
QtGui.QMessageBox.warning(
|
||||||
None,
|
None,
|
||||||
|
Loading…
Reference in New Issue
Block a user