summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 7cc2b237f..551d2c177 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -293,6 +293,9 @@ selinux = None
_selinux_merge = None
try:
import portage._selinux
+ # Make sure the _selinux attribute is correctly reinitialized after
+ # reload(portage) is called. See bug #298310.
+ _selinux = sys.modules['portage._selinux']
selinux = _unicode_module_wrapper(_selinux,
encoding=_encodings['fs'])
_selinux_merge = _unicode_module_wrapper(_selinux,