From: Zac Medico Date: Mon, 19 May 2008 23:06:12 +0000 (-0000) Subject: Fix vardbapi.aux_get() logic so that it will correctly pull the metadata X-Git-Tag: v2.2_pre7~7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f445747b5d6f8f05efec0f6c3cd8e8c32292c6c2;p=portage.git Fix vardbapi.aux_get() logic so that it will correctly pull the metadata value corresponding to an unrecognized metadata key. svn path=/main/trunk/; revision=10367 --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 041c60a16..cb47cd68d 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -631,7 +631,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