Tiny fix for Qube Manager params

Made Qube Manager params consistent with other manager
tools (first Qt, then Qubes).
This commit is contained in:
Marta Marczykowska-Górecka 2018-03-28 17:43:57 +02:00
parent 2d6b6488ea
commit 674b80613d
No known key found for this signature in database
GPG Key ID: 9A752C30B26FD04B

View File

@ -231,7 +231,7 @@ class VmManagerWindow(ui_qubemanager.Ui_VmManagerWindow, QtGui.QMainWindow):
"Last backup": 10,
}
def __init__(self, qubes_app, qt_app, parent=None):
def __init__(self, qt_app, qubes_app, parent=None):
# pylint: disable=unused-argument
super(VmManagerWindow, self).__init__()
self.setupUi(self)
@ -1199,7 +1199,7 @@ def main():
qubes_app = Qubes()
manager_window = VmManagerWindow(qubes_app, qt_app)
manager_window = VmManagerWindow(qt_app, qubes_app)
manager_window.show()
manager_window.update_table()