From: Zac Medico Date: Mon, 21 Mar 2011 00:11:14 +0000 (-0700) Subject: chk_updated_cfg_files: fix whitespace in message X-Git-Tag: v2.2.0_alpha29~37 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1f8f9438935c11fada771ff64a9fae6a7edfe087;p=portage.git chk_updated_cfg_files: fix whitespace in message Thanks to Dennis Schridde in bug #359681. --- diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index c75280081..f79f9279d 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -2965,7 +2965,8 @@ def chk_updated_cfg_files(eroot, config_protect): portage.util.find_updated_config_files(target_root, config_protect)) for x in result: - print("\n"+colorize("WARN", " * IMPORTANT:"), end=' ') + writemsg_level("\n %s " % (colorize("WARN", "* IMPORTANT:"),), + level=logging.INFO, noiselevel=-1) if not x[1]: # it's a protected file writemsg_level("config file '%s' needs updating.\n" % x[0], level=logging.INFO, noiselevel=-1)