From: Zac Medico Date: Wed, 21 Dec 2011 23:16:13 +0000 (-0800) Subject: vardbapi._aux_get: account for _aux_cache_keys_re X-Git-Tag: v2.2.0_alpha82~19 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=0472c8083ea647de8973504f60563aa08e4ef576;p=portage.git vardbapi._aux_get: account for _aux_cache_keys_re --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 6f8ee5f3f..7184550b3 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -720,7 +720,8 @@ class vardbapi(dbapi): myf.close() except IOError: myd = None - if x not in self._aux_cache_keys: + if x not in self._aux_cache_keys and \ + self._aux_cache_keys_re.match(x) is None: myd = self._aux_env_search(mycpv, x) if myd is None: myd = _unicode_decode('')