From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Q1SnQ-0001iW-HR for garchives@archives.gentoo.org; Mon, 21 Mar 2011 00:16:32 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4237C1C014; Mon, 21 Mar 2011 00:16:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0DD7B1C014 for ; Mon, 21 Mar 2011 00:16:24 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8C6E1B4115 for ; Mon, 21 Mar 2011 00:16:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1095A8006A for ; Mon, 21 Mar 2011 00:16:24 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1f8f9438935c11fada771ff64a9fae6a7edfe087.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/actions.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 1f8f9438935c11fada771ff64a9fae6a7edfe087 Date: Mon, 21 Mar 2011 00:16:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 2ad6135ad6dd1fe6c0999f58becabc5a commit: 1f8f9438935c11fada771ff64a9fae6a7edfe087 Author: Zac Medico gentoo org> AuthorDate: Mon Mar 21 00:11:14 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Mar 21 00:11:14 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D1f8f9438 chk_updated_cfg_files: fix whitespace in message Thanks to Dennis Schridde in bug #359681. --- 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 c752800..f79f927 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)) =20 for x in result: - print("\n"+colorize("WARN", " * IMPORTANT:"), end=3D' ') + writemsg_level("\n %s " % (colorize("WARN", "* IMPORTANT:"),), + level=3Dlogging.INFO, noiselevel=3D-1) if not x[1]: # it's a protected file writemsg_level("config file '%s' needs updating.\n" % x[0], level=3Dlogging.INFO, noiselevel=3D-1)