Browse Source

Fix error/success message on dialog

donoban 5 years ago
parent
commit
988b7a6479
1 changed files with 2 additions and 3 deletions
  1. 2 3
      qubesmanager/restore.py

+ 2 - 3
qubesmanager/restore.py

@@ -227,9 +227,8 @@ class RestoreVMsWindow(ui_restoredlg.Ui_Restore, QtGui.QWizard):
         if self.thread.msg:
             QtGui.QMessageBox.warning(
                 None,
-                self.tr("Backup msg!"),
-                self.tr("ERROR: {0}").format(
-                    self.thread.msg))
+                self.tr("Restore qubes"),
+                self.tr(self.thread.msg)
 
         if self.thread.msg:
             self.append_output(self.thread.msg)