diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-06-19 11:27:20 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-06-19 11:27:20 +0200 |
commit | 441784d7b54c5aefe1ba1dd5526bdc5ac960e4e5 (patch) | |
tree | 5562fc5377f9592a6293735e8baf78230a1a48a6 /portato/gui/utils.py | |
parent | 52f04fc6cccffa7cf31a4d7eab9c9b341f77a293 (diff) | |
parent | 48f046aec4df3b09906ca41e2c75ce7e0fb045a6 (diff) | |
download | portato-441784d7b54c5aefe1ba1dd5526bdc5ac960e4e5.tar.gz portato-441784d7b54c5aefe1ba1dd5526bdc5ac960e4e5.tar.bz2 portato-441784d7b54c5aefe1ba1dd5526bdc5ac960e4e5.zip |
Merged in unify
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: |