summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-04-24 08:56:43 +0000
committerZac Medico <zmedico@gentoo.org>2006-04-24 08:56:43 +0000
commit412509b716c41b2876c43440e43510fed5a0a0f8 (patch)
tree8f849700deeac452eb9633a9098749d4c042c598
parent377def13062f0c4e74db0e17e3b0aeb9ecc89d83 (diff)
downloadportage-412509b716c41b2876c43440e43510fed5a0a0f8.tar.gz
portage-412509b716c41b2876c43440e43510fed5a0a0f8.tar.bz2
portage-412509b716c41b2876c43440e43510fed5a0a0f8.zip
Fix accidental usage of global settings instead of self.
svn path=/main/trunk/; revision=3207
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
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)