summaryrefslogtreecommitdiff
path: root/UpdateManager
diff options
context:
space:
mode:
authorglatzor@ubuntu.com <>2006-08-03 13:24:16 +0200
committerglatzor@ubuntu.com <>2006-08-03 13:24:16 +0200
commit4a5e26b3793e366c0dcdd0b3017bff421673a5f4 (patch)
tree924c34a53e384651c6ab572498ae22293481fe57 /UpdateManager
parente1563be06f8e49bc974c3d35874e8464c21b1911 (diff)
downloadpython-apt-4a5e26b3793e366c0dcdd0b3017bff421673a5f4.tar.gz
* reverse the ording of the importance
Diffstat (limited to 'UpdateManager')
-rw-r--r--UpdateManager/UpdateManager.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index e16c2901..126bfa8f 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -720,6 +720,7 @@ class UpdateManager(SimpleGladeApp):
i=0
origin_list = self.list.pkgs.keys()
origin_list.sort(lambda x,y: cmp(x.importance,y.importance))
+ origin_list.reverse()
for origin in origin_list:
self.store.append([False,'<b><big>%s</big></b>' % origin.description,
origin.description, None])