Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 183431
Collapse All | Expand All

(-)pym/portage.py (-1 / +8 lines)
Lines 1125-1131 Link Here
1125
									"Parent '%s' not found: '%s'" %  \
1125
									"Parent '%s' not found: '%s'" %  \
1126
									(parentPath, parentsFile))
1126
									(parentPath, parentsFile))
1127
					self.profiles.append(currentPath)
1127
					self.profiles.append(currentPath)
1128
				addProfile(os.path.realpath(self.profile_path))
1128
				try:
1129
					addProfile(os.path.realpath(self.profile_path))
1130
				except portage_exception.ParseError, e:
1131
					writemsg("!!! Unable to parse profile: '%s'\n" % \
1132
						self.profile_path, noiselevel=-1)
1133
					writemsg("!!! ParseError: %s\n" % str(e), noiselevel=-1)
1134
					del e
1135
					self.profiles = []
1129
			if local_config:
1136
			if local_config:
1130
				custom_prof = os.path.join(
1137
				custom_prof = os.path.join(
1131
					config_root, CUSTOM_PROFILE_PATH.lstrip(os.path.sep))
1138
					config_root, CUSTOM_PROFILE_PATH.lstrip(os.path.sep))

Return to bug 183431