summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/dbapi/vartree.py3
1 files changed, 2 insertions, 1 deletions
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('')