One more place to use vm.klass instead of type(vm)

This commit is contained in:
Marek Marczykowski-Górecki 2017-10-16 03:10:19 +02:00
parent 14b6eed25b
commit 9ebd602407
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -281,7 +281,7 @@ class VMSettingsWindow(Ui_SettingsDialog, QDialog):
self.autostart_vm.setVisible(False)
#type
self.type_label.setText(type(self.vm).__name__)
self.type_label.setText(self.vm.klass)
#installed by rpm
self.rpm_label.setText('Yes' if self.vm.installed_by_rpm else 'No')