diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-09-12 15:54:45 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-09-12 15:54:45 +0200 |
commit | 839d5c95803272546a0348743f09a8da56bc006a (patch) | |
tree | c887f1b6f02d6f2574060b554f1ccb0de14f51f9 /portato | |
parent | 1f3131c2ce0617ab3f1828bff6231339ff4c9152 (diff) | |
download | portato-839d5c95803272546a0348743f09a8da56bc006a.tar.gz portato-839d5c95803272546a0348743f09a8da56bc006a.tar.bz2 portato-839d5c95803272546a0348743f09a8da56bc006a.zip |
Fixed block check
Diffstat (limited to '')
-rw-r--r-- | portato/gui/queue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/queue.py b/portato/gui/queue.py index 5ff600f..3aaeb5b 100644 --- a/portato/gui/queue.py +++ b/portato/gui/queue.py @@ -279,7 +279,7 @@ class EmergeQueue: # the slot-cp's of the packages in the queue slots = {} for c in self.iters[type]: - slots[system.new_package(c).get_slot_cp()] = cpv + slots[system.new_package(c).get_slot_cp()] = c # check the installed blocks against the slot-cp's for pkgs, block in inst[:]: |