diff options
-rw-r--r-- | pym/_emerge/actions.py | 3 |
1 files changed, 2 insertions, 1 deletions
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) |