summaryrefslogtreecommitdiffstats
path: root/pym/portage
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage')
-rw-r--r--pym/portage/const.py1
-rw-r--r--pym/portage/sets/files.py6
2 files changed, 4 insertions, 3 deletions
diff --git a/pym/portage/const.py b/pym/portage/const.py
index a6ac8e8c2..e0c34e494 100644
--- a/pym/portage/const.py
+++ b/pym/portage/const.py
@@ -48,6 +48,7 @@ CACHE_PATH = "var/cache/edb"
DEPCACHE_PATH = CACHE_PATH + "/dep" # FIXME: does not seem to use ROOT when used
PRIVATE_PATH = "var/lib/portage"
WORLD_FILE = PRIVATE_PATH + "/world"
+WORLD_SETS_FILE = PRIVATE_PATH + "/world_sets"
CONFIG_MEMORY_FILE = PRIVATE_PATH + "/config"
NEWS_LIB_PATH = "var/lib/gentoo"
diff --git a/pym/portage/sets/files.py b/pym/portage/sets/files.py
index 7c5a6c766..13c8508e0 100644
--- a/pym/portage/sets/files.py
+++ b/pym/portage/sets/files.py
@@ -11,7 +11,7 @@ from portage import _encodings
from portage import _unicode_decode
from portage import _unicode_encode
from portage.util import grabfile, write_atomic, ensure_dirs, normalize_path
-from portage.const import PRIVATE_PATH, USER_CONFIG_PATH
+from portage.const import USER_CONFIG_PATH, WORLD_FILE, WORLD_SETS_FILE
from portage.localization import _
from portage.locks import lockfile, unlockfile
from portage import portage_gid
@@ -213,11 +213,11 @@ class WorldSet(EditablePackageSet):
# most attributes exist twice as atoms and non-atoms are stored in
# separate files
self._lock = None
- self._filename = os.path.join(os.sep, root, PRIVATE_PATH), "world")
+ self._filename = os.path.join(os.sep, root, WORLD_FILE)
self.loader = ItemFileLoader(self._filename, self._validate)
self._mtime = None
- self._filename2 = os.path.join(os.sep, root, PRIVATE_PATH), "world_sets")
+ self._filename2 = os.path.join(os.sep, root, WORLD_SETS_FILE)
self.loader2 = ItemFileLoader(self._filename2, self._validate2)
self._mtime2 = None