From: Zac Medico Date: Fri, 3 Jul 2009 01:47:44 +0000 (-0000) Subject: Fix broken reference to self.myopts in the dynamic_config constructor. X-Git-Tag: v2.2_rc34~100 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3afdb2435fb95cf727817e93736e4ae7ef4776d2;p=portage.git Fix broken reference to self.myopts in the dynamic_config constructor. svn path=/main/trunk/; revision=13762 --- diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 57e6c4ba9..144f57bc9 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -235,8 +235,8 @@ class _dynamic_depgraph_config(object): if "--usepkg" in depgraph._frozen_config.myopts: depgraph._frozen_config._trees_orig[myroot ]["bintree"].populate( - "--getbinpkg" in self.myopts, - "--getbinpkgonly" in self.myopts) + "--getbinpkg" in depgraph._frozen_config.myopts, + "--getbinpkgonly" in depgraph._frozen_config.myopts) class depgraph(object):