Bug #230975 - Rename the portage.selinux module to portage._selinux in order
authorZac Medico <zmedico@gentoo.org>
Mon, 22 Sep 2008 20:28:15 +0000 (20:28 -0000)
committerZac Medico <zmedico@gentoo.org>
Mon, 22 Sep 2008 20:28:15 +0000 (20:28 -0000)
to avoid a relative import issue which caused portage.selinux to attempt to
import itself instead of the real 'selinux' module. Thanks to Michael
Edenfield for this patch.

svn path=/main/trunk/; revision=11535

pym/portage/__init__.py
pym/portage/_selinux.py [moved from pym/portage/selinux.py with 100% similarity]

index 207432f3523c98d6b418d16c5371b1a6ee825389..79d99f813eabc00730e232f331e305648aa5f1d7 100644 (file)
@@ -140,7 +140,7 @@ except ImportError, e:
 
 
 try:
-       import portage.selinux as selinux
+       import portage._selinux as selinux
 except OSError, e:
        writemsg("!!! SELinux not loaded: %s\n" % str(e), noiselevel=-1)
        del e