diff options
-rw-r--r-- | pym/portage.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index 322bd2534..c3cad4153 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -5137,7 +5137,8 @@ class vardbapi(dbapi): if pull_me: # pull any needed data and cache it aux_keys = list(pull_me) - mydata.update(izip(aux_keys, self._aux_get(mycpv, aux_keys))) + for k, v in izip(aux_keys, self._aux_get(mycpv, aux_keys)): + mydata[k] = v if not cache_valid: cache_data = {} for aux_key in self._aux_cache_keys: |