summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-05-19 23:09:25 +0000
committerZac Medico <zmedico@gentoo.org>2008-05-19 23:09:25 +0000
commitb5d9d7f51273cb945d729352e7a24dc1fd33fd97 (patch)
tree8e699dc06ad673c990a25cdf83b878f7c0b865f8 /pym/portage.py
parentb56bfb196e53de95efcb952cfa5ec3001c754bd4 (diff)
downloadportage-b5d9d7f51273cb945d729352e7a24dc1fd33fd97.tar.gz
portage-b5d9d7f51273cb945d729352e7a24dc1fd33fd97.tar.bz2
portage-b5d9d7f51273cb945d729352e7a24dc1fd33fd97.zip
Fix vardbapi.aux_get() logic so that it will correctly pull the metadata
value corresponding to an unrecognized metadata key. (trunk r10367) svn path=/main/branches/2.1.2/; revision=10368
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 84fe11188..ba79b2d43 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -6916,7 +6916,7 @@ class vardbapi(dbapi):
pull_me = set(wants).difference(cache_these)
mydata.update(metadata)
else:
- pull_me = cache_these
+ pull_me = cache_these.union(wants)
if pull_me:
# pull any needed data and cache it