Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 122517 | Differences between
and this patch

Collapse All | Expand All

(-)pym/portage.py (-1 / +4 lines)
Lines 6685-6691 Link Here
6685
6685
6686
if 'selinux' in settings["USE"].split(" "):
6686
if 'selinux' in settings["USE"].split(" "):
6687
	try:
6687
	try:
6688
		import selinux
6688
		try:
6689
			import selinux_aux as selinux
6690
		except ImportError:
6691
			import selinux
6689
		if hasattr(selinux, "enabled"):
6692
		if hasattr(selinux, "enabled"):
6690
			selinux_enabled = selinux.enabled
6693
			selinux_enabled = selinux.enabled
6691
		else:
6694
		else:

Return to bug 122517