From 3bbf51d00ad96e5927ce4d84712fe0e30fbd0212 Mon Sep 17 00:00:00 2001 From: Fabian Groffen Date: Sat, 5 Sep 2009 10:25:30 +0000 Subject: consistently use CACHE_PATH with target_root, this commit needs a separate soon to be done commit of pym/portage/const.py to work correctly svn path=/main/trunk/; revision=14188 --- pym/portage/glsa.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pym/portage/glsa.py') diff --git a/pym/portage/glsa.py b/pym/portage/glsa.py index db297995d..6dc73ac67 100644 --- a/pym/portage/glsa.py +++ b/pym/portage/glsa.py @@ -33,7 +33,7 @@ def get_applied_glsas(settings): @rtype: list @return: list of glsa IDs """ - return grabfile(os.path.join(os.sep, settings["ROOT"], CACHE_PATH.lstrip(os.sep), "glsa")) + return grabfile(os.path.join(os.sep, settings["ROOT"], CACHE_PATH, "glsa")) # TODO: use the textwrap module instead @@ -655,7 +655,7 @@ class Glsa: if not self.isApplied(): checkfile = codecs.open( _unicode_encode(os.path.join(os.sep, self.config["ROOT"], - CACHE_PATH.lstrip(os.sep), "glsa"), + CACHE_PATH, "glsa"), encoding=_encodings['fs'], errors='strict'), mode='a+', encoding=_encodings['content'], errors='strict') checkfile.write(self.nr+"\n") -- cgit v1.2.3-1-g7c22