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.1.9.45~16 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b402e535f0a728c13183a92a19f48f173164eada;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 b683a37e8..84ed27c9e 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -2944,7 +2944,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)