From: Zac Medico Date: Mon, 24 Apr 2006 08:56:43 +0000 (-0000) Subject: Fix accidental usage of global settings instead of self. X-Git-Tag: v2.1_pre10~67 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=412509b716c41b2876c43440e43510fed5a0a0f8;p=portage.git Fix accidental usage of global settings instead of self. svn path=/main/trunk/; revision=3207 --- diff --git a/pym/portage.py b/pym/portage.py index 27891b6e9..d0266bb5f 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1645,7 +1645,7 @@ class config: def thirdpartymirrors(self): profileroots = [os.path.join(self["PORTDIR"], "profiles")] - for x in settings["PORTDIR_OVERLAY"].split(): + for x in self["PORTDIR_OVERLAY"].split(): profileroots.insert(0, os.path.join(x, "profiles")) thirdparty_lists = [grabdict(os.path.join(x, "thirdpartymirrors")) for x in profileroots] return stack_dictlist(thirdparty_lists, incremental=True)