diff options
| author | fuzzyray <fuzzyray@gentoo.org> | 2006-01-06 02:41:14 +0000 |
|---|---|---|
| committer | fuzzyray <fuzzyray@gentoo.org> | 2006-01-06 02:41:14 +0000 |
| commit | 1f975edafcc37697b0ad916bfea31386a99b3071 (patch) | |
| tree | 916a9f2fdfdb5a63b7bdb90df853ae2807da3be0 | |
| parent | e3e6e2e24a868b43c24a3ec82d9cb451a75c5523 (diff) | |
| download | gentoolkit-1f975edafcc37697b0ad916bfea31386a99b3071.tar.gz | |
Fix find_world_packages() Bug #76568
svn path=/; revision=270
| -rw-r--r-- | trunk/src/gentoolkit/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/gentoolkit/helpers.py b/trunk/src/gentoolkit/helpers.py index a1071e7..fa4689f 100644 --- a/trunk/src/gentoolkit/helpers.py +++ b/trunk/src/gentoolkit/helpers.py @@ -85,7 +85,7 @@ def find_system_packages(prefilter=None): def find_world_packages(prefilter=None): """Returns a tuple of lists, first list is resolved world packages, seond is unresolved package names.""" - f = open(portage.root+"var/cache/edb/world") + f = open(portage.WORLD_FILE) pkglist = f.readlines() resolved = [] unresolved = [] |
