From: Zac Medico Date: Mon, 26 Nov 2007 17:36:35 +0000 (-0000) Subject: Make config.pop() properly call config.modifying(). (trunk r8690) X-Git-Tag: v2.1.4~199 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9aba5f55c5fad3b308efd54204851097f45f1881;p=portage.git Make config.pop() properly call config.modifying(). (trunk r8690) svn path=/main/branches/2.1.2/; revision=8691 --- diff --git a/pym/portage.py b/pym/portage.py index b0325feb8..963090086 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -2421,6 +2421,7 @@ class config: return x def pop(self, k, x=None): + self.modifying() v = x for d in reversed(self.lookuplist): v = d.pop(k, v)