diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-04-24 08:56:43 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-04-24 08:56:43 +0000 |
commit | 412509b716c41b2876c43440e43510fed5a0a0f8 (patch) | |
tree | 8f849700deeac452eb9633a9098749d4c042c598 | |
parent | 377def13062f0c4e74db0e17e3b0aeb9ecc89d83 (diff) | |
download | portage-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.py | 2 |
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) |