Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/61'
Browse files Browse the repository at this point in the history
* origin/pr/61:
  Fixed duplicate dom0 in Updater GUI
  • Loading branch information
marmarek committed Apr 8, 2019
2 parents 2056e1a + 3ffb5a8 commit ceaae47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qui/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def populate_vm_list(self):
self.vm_list.add(VMListBoxRow(vm, state))

for vm in self.qapp.domains:
if getattr(vm, 'updateable', False):
if getattr(vm, 'updateable', False) and vm.klass != 'AdminVM':
state = vm.features.get('updates-available', False)
result = result or state
self.vm_list.add(VMListBoxRow(vm, state))
Expand Down

0 comments on commit ceaae47

Please sign in to comment.