summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-09-22 21:59:19 +0000
committerZac Medico <zmedico@gentoo.org>2009-09-22 21:59:19 +0000
commita92bb4b2620f1def5d7dbad3ab431b3f501cbb0e (patch)
tree8842886f95376a23612c8a9b868f1773382e9dd6 /pym
parent3a71ae471c39c36d411d51e8b8d826c634ee5344 (diff)
downloadportage-a92bb4b2620f1def5d7dbad3ab431b3f501cbb0e.tar.gz
portage-a92bb4b2620f1def5d7dbad3ab431b3f501cbb0e.tar.bz2
portage-a92bb4b2620f1def5d7dbad3ab431b3f501cbb0e.zip
Don't pass the ignore_none parameter to stack_dicts() since it does nothing
now. svn path=/main/trunk/; revision=14388
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index b942815e0..33e1338ff 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -1887,7 +1887,7 @@ class config(object):
else:
self.make_defaults_use.append("")
self.mygcfg = stack_dicts(mygcfg_dlists,
- incrementals=portage.const.INCREMENTALS, ignore_none=1)
+ incrementals=portage.const.INCREMENTALS)
if self.mygcfg is None:
self.mygcfg = {}
self.configlist.append(self.mygcfg)