From b5d9d7f51273cb945d729352e7a24dc1fd33fd97 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 19 May 2008 23:09:25 +0000 Subject: [PATCH] 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 --- pym/portage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2