diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-10-05 15:38:42 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-10-05 15:38:42 +0200 |
commit | b859cb5199b63e28a0f6470e0ddf8658d6304ad9 (patch) | |
tree | 21cae5c3280473fe176befec2300e1b928e1dfc0 /portato/gui/queue.py | |
parent | 5ae4fda6f6fdcc8a21253dd6dc9d6051c99af34f (diff) | |
parent | 2fae9ac523385f61d192e9eeb664002c4a952a01 (diff) | |
download | portato-b859cb5199b63e28a0f6470e0ddf8658d6304ad9.tar.gz portato-b859cb5199b63e28a0f6470e0ddf8658d6304ad9.tar.bz2 portato-b859cb5199b63e28a0f6470e0ddf8658d6304ad9.zip |
Reworked the World List stuff to be more usable and better coded
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 e73891d..6d3d19d 100644 --- a/portato/gui/queue.py +++ b/portato/gui/queue.py @@ -144,7 +144,7 @@ class EmergeQueue: old = system.find_packages(pkg.get_slot_cp(), system.SET_INSTALLED) if old: old = old[0] # assume we have only one there - cmp = pkg.compare_version(old) + cmp = pkg.__cmp__(old) if cmp > 0: update = True elif cmp < 0: |