From: Zac Medico Date: Tue, 2 Mar 2010 20:47:36 +0000 (-0000) Subject: Add missing newline to the "CONFIG_PROTECT is empty" warning message. X-Git-Tag: v2.1.8~92 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f38c65b5086d821649cf6278865dfbec77ae2396;p=portage.git Add missing newline to the "CONFIG_PROTECT is empty" warning message. (trunk r15409) svn path=/main/branches/2.1.7/; revision=15630 --- diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index f4d223b67..bd411dcb3 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -982,6 +982,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):