settings apply: fix error message

This commit is contained in:
Marek Marczykowski 2013-02-23 06:46:56 +01:00
parent 34ea444a42
commit 4d9e30784e

View File

@ -145,7 +145,8 @@ class VMSettingsWindow(Ui_SettingsDialog, QDialog):
progress.hide()
if not thread_monitor.success:
QMessageBox.warning (None, "Error while changing settings for {0}!", "ERROR: {1}".format(self.vm.name, thread_monitor.error_msg))
QMessageBox.warning (None, "Error while changing settings for {0}!".format(self.vm.name),
"ERROR: {0}".format(thread_monitor.error_msg))
self.done(0)