diff options
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index 2137a7b87..6655e2c3a 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -5367,7 +5367,7 @@ class portdbapi(dbapi): if metadata["EAPI"] != portage_const.EAPI: # intentionally wipe keys. - map(lambda x: metadata.setdefault("x", ''), auxdbkeys) + map(lambda x: metadata.setdefault(x, ''), auxdbkeys) metadata["EAPI"] == -1 else: |