summaryrefslogtreecommitdiff
path: root/portato/gui/windows/pkglist.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-10-05 15:30:57 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-10-05 15:30:57 +0200
commit63cdb7c521133a9d621f9407c4c956e995018ddd (patch)
tree5912ab8cd671cf415c7b243348e4c8901a957092 /portato/gui/windows/pkglist.py
parentce9f4821e2238ca2961002ad3f872e8432267ee2 (diff)
downloadportato-63cdb7c521133a9d621f9407c4c956e995018ddd.tar.gz
portato-63cdb7c521133a9d621f9407c4c956e995018ddd.tar.bz2
portato-63cdb7c521133a9d621f9407c4c956e995018ddd.zip
Now have it the sorted way in PkgLists
Diffstat (limited to '')
-rw-r--r--portato/gui/windows/pkglist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/pkglist.py b/portato/gui/windows/pkglist.py
index bd1ded8..e99e8a1 100644
--- a/portato/gui/windows/pkglist.py
+++ b/portato/gui/windows/pkglist.py
@@ -34,7 +34,7 @@ class PkgListWindow (AbstractDialog):
self.queue = queue
self.jump = jump_to
- self.packages = packages
+ self.packages = system.sort_package_list(packages, only_cpv = True)
self.build_list()