diff options
| author | genone <genone@gentoo.org> | 2004-01-09 04:27:02 +0000 |
|---|---|---|
| committer | genone <genone@gentoo.org> | 2004-01-09 04:27:02 +0000 |
| commit | 979f19237b503aeb30efc7d0ed5a58a9e4fddfa1 (patch) | |
| tree | 2f53931761f415c196b01e38403533ced9985be9 /trunk/src | |
| parent | 24336aaf573d7be94754f2be7d438c9a9fa24d57 (diff) | |
| download | gentoolkit-979f19237b503aeb30efc7d0ed5a58a9e4fddfa1.tar.gz | |
missed that it's a db function
svn path=/; revision=56
Diffstat (limited to 'trunk/src')
| -rw-r--r-- | trunk/src/gentoolkit/gentoolkit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/gentoolkit/gentoolkit.py b/trunk/src/gentoolkit/gentoolkit.py index e6ec369..a98a79c 100644 --- a/trunk/src/gentoolkit/gentoolkit.py +++ b/trunk/src/gentoolkit/gentoolkit.py @@ -237,7 +237,7 @@ def find_world_packages(prefilter=None): def find_all_installed_packages(prefilter=None): """Returns a list of all installed packages, after applying the prefilter function""" - t=vartree.cpv_all() + t=vartree.dbapi.cpv_all() if prefilter: t=filter(prefilter,t) return [Package(x) for x in t] |
