summaryrefslogtreecommitdiffstats
path: root/pym/portage/repository/config.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-12-25 20:40:40 +0100
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-12-25 20:40:40 +0100
commit4cfa78b9406d9a8f94b3eae23631b2bb430bc533 (patch)
tree01fb092aee044fa700222141cd0db9c6bf5d61fe /pym/portage/repository/config.py
parent84260c2aadbe3fe416d0e2fb428cc1ea07404930 (diff)
downloadportage-4cfa78b9406d9a8f94b3eae23631b2bb430bc533.tar.gz
portage-4cfa78b9406d9a8f94b3eae23631b2bb430bc533.tar.bz2
portage-4cfa78b9406d9a8f94b3eae23631b2bb430bc533.zip
portage.repository.config.RepoConfigLoader: Rename _add_overlays() to
_add_repositories().
Diffstat (limited to 'pym/portage/repository/config.py')
-rw-r--r--pym/portage/repository/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py
index 0b99e1bf5..f98b9b7ea 100644
--- a/pym/portage/repository/config.py
+++ b/pym/portage/repository/config.py
@@ -290,7 +290,7 @@ class RepoConfigLoader(object):
"""Loads and store config of several repositories, loaded from PORTDIR_OVERLAY or repos.conf"""
@staticmethod
- def _add_overlays(portdir, portdir_overlay, prepos, ignored_map, ignored_location_map):
+ def _add_repositories(portdir, portdir_overlay, prepos, ignored_map, ignored_location_map):
"""Add overlays in PORTDIR_OVERLAY as repositories"""
overlays = []
if portdir:
@@ -427,7 +427,7 @@ class RepoConfigLoader(object):
# If PORTDIR_OVERLAY contains a repo with the same repo_name as
# PORTDIR, then PORTDIR is overridden.
- portdir = self._add_overlays(portdir, portdir_overlay, prepos,
+ portdir = self._add_repositories(portdir, portdir_overlay, prepos,
ignored_map, ignored_location_map)
if portdir and portdir.strip():
portdir = os.path.realpath(portdir)