summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)