From: Fabian Groffen Date: Sat, 5 Sep 2009 10:44:58 +0000 (-0000) Subject: DEPRECATED_PROFILE_FILE is derived from PROFILE_PATH which has no leading slash X-Git-Tag: v2.2_rc41~71 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=75ff191248e8b9ecac0374c9b344672d92b25ec5;p=portage.git DEPRECATED_PROFILE_FILE is derived from PROFILE_PATH which has no leading slash svn path=/main/trunk/; revision=14191 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 4b79d6802..dfb9c0fef 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -8471,7 +8471,7 @@ def deprecated_profile_check(settings=None): if settings is not None: config_root = settings["PORTAGE_CONFIGROOT"] deprecated_profile_file = os.path.join(config_root, - DEPRECATED_PROFILE_FILE.lstrip(os.sep)) + DEPRECATED_PROFILE_FILE) if not os.access(deprecated_profile_file, os.R_OK): return False dcontent = codecs.open(_unicode_encode(deprecated_profile_file,