From: Zac Medico Date: Sat, 20 Feb 2010 07:24:44 +0000 (-0000) Subject: Add missing newline to the "CONFIG_PROTECT is empty" warning message. X-Git-Tag: v2.2_rc64~90 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=557ff227cf80f0d2dc88ca668c28cd2c6f60d85c;p=portage.git Add missing newline to the "CONFIG_PROTECT is empty" warning message. svn path=/main/trunk/; revision=15409 --- diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index fa564b183..3a9990188 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -1124,6 +1124,7 @@ def config_protect_check(trees): msg = "!!! CONFIG_PROTECT is empty" if root != "/": msg += " for '%s'" % root + msg += "\n" writemsg_level(msg, level=logging.WARN, noiselevel=-1) def profile_check(trees, myaction):