diff options
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 dc9b9f3..0a2930b 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, with_version = False) + installed = system.find_packages(category, "installed", with_version = False) # cycle through packages for p in packages: |