diff options
-rw-r--r-- | pym/portage/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 2fecfef38..29fcbda54 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -2471,6 +2471,7 @@ class config(object): return x def pop(self, k, x=None): + self.modifying() v = x for d in reversed(self.lookuplist): v = d.pop(k, v) |