From a2aaad42a73d78f445c3ce997c50922315111ebd Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 17 Dec 2009 03:36:16 +0000 Subject: Use portage.writemsg for lazy portage.util import. (trunk r15108) svn path=/main/branches/2.1.7/; revision=15109 --- pym/portage/_selinux.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/portage/_selinux.py b/pym/portage/_selinux.py index e6d44b70b..594e47ad5 100644 --- a/pym/portage/_selinux.py +++ b/pym/portage/_selinux.py @@ -7,11 +7,11 @@ import os import shutil +import portage from portage import _encodings from portage import _unicode_decode from portage import _unicode_encode from portage.localization import _ -from portage.util import writemsg import selinux from selinux import is_selinux_enabled @@ -81,7 +81,7 @@ def setexec(ctx="\n"): if selinux.security_getenforce() == 1: raise OSError(_("Failed setting exec() context \"%s\".") % ctx) else: - writemsg("!!! " + \ + portage.writemsg("!!! " + \ _("Failed setting exec() context \"%s\".") % ctx, \ noiselevel=-1) -- cgit v1.2.3-65-gdbad