diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-05-21 20:27:05 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-05-21 20:27:05 +0200 |
commit | 9ecb704361e551d02ef0a9d4a88f217e59e48c8d (patch) | |
tree | 735112198c67ad3590298ac711b7dfb108aa8532 /portato/gui/utils.py | |
parent | adb8acd0b90992a8281494c76d30a529bde45fea (diff) | |
download | portato-9ecb704361e551d02ef0a9d4a88f217e59e48c8d.tar.gz portato-9ecb704361e551d02ef0a9d4a88f217e59e48c8d.tar.bz2 portato-9ecb704361e551d02ef0a9d4a88f217e59e48c8d.zip |
Ported to new find_packages API
Diffstat (limited to 'portato/gui/utils.py')
-rw-r--r-- | portato/gui/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/portato/gui/utils.py b/portato/gui/utils.py index 151ec22..01a6b2f 100644 --- a/portato/gui/utils.py +++ b/portato/gui/utils.py @@ -165,8 +165,8 @@ class Database (object): """ # get the lists - packages = system.find_all_packages(name = category, withVersion = False) - installed = system.find_all_installed_packages(name = category, withVersion = False) + packages = system.find_packages(category, withVersion = False) + installed = system.find_packages(category, set = "installed", withVersion = False) # cycle through packages for p in packages: |