another fix

pull/15/head
guinux 12 years ago
parent 1047cc97e5
commit 18b0395f1f

@ -163,12 +163,20 @@ def get_state_list(state):
global states_dict global states_dict
if state == _('To install'): if state == _('To install'):
liststore = Gtk.ListStore(object) liststore = Gtk.ListStore(object)
for pkg in transaction.to_add: for name in transaction.to_add:
pkg = transaction.get_localpkg(name)
if pkg:
liststore.append([pkg])
else:
pkg = transaction.get_syncpkg(name)
if pkg:
liststore.append([pkg]) liststore.append([pkg])
return liststore return liststore
elif state == _('To remove'): elif state == _('To remove'):
liststore = Gtk.ListStore(object) liststore = Gtk.ListStore(object)
for pkg in transaction.to_remove: for name in transaction.to_remove:
pkg = transaction.get_localpkg(name)
if pkg:
liststore.append([pkg]) liststore.append([pkg])
return liststore return liststore
elif state in states_dict.keys(): elif state in states_dict.keys():

Loading…
Cancel
Save