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 <gentoo-commits+bounces-318708-garchives=archives.gentoo.org@lists.gentoo.org>) id 1Priib-0006be-VY for garchives@archives.gentoo.org; Tue, 22 Feb 2011 03:15:18 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38A32E068E; Tue, 22 Feb 2011 03:14:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0C915E068E for <gentoo-commits@lists.gentoo.org>; Tue, 22 Feb 2011 03:14:40 +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 791041B4237 for <gentoo-commits@lists.gentoo.org>; Tue, 22 Feb 2011 03:14:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D79FC80075 for <gentoo-commits@lists.gentoo.org>; Tue, 22 Feb 2011 03:14:39 +0000 (UTC) From: "Zac Medico" <zmedico@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" <zmedico@gentoo.org> Message-ID: <a3739e2ec16a29b7ffc17f76cbec00b40dd6ab46.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:2.1.9 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: a3739e2ec16a29b7ffc17f76cbec00b40dd6ab46 Date: Tue, 22 Feb 2011 03:14:39 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 5592e6d214cb9758768da3fc2b834c91 commit: a3739e2ec16a29b7ffc17f76cbec00b40dd6ab46 Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Tue Feb 22 02:59:24 2011 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Tue Feb 22 03:13:51 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Da3739e2e chk_updated_cfg_files: don't display ._cfg0000_ --- pym/_emerge/actions.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index 6169950..82cacdb 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -2927,7 +2927,10 @@ def chk_updated_cfg_files(eroot, config_protect): level=3Dlogging.INFO, noiselevel=3D-1) else: # it's a protected dir if len(x[1]) =3D=3D 1: - writemsg_level("config file '%s' needs updating.\n" % x[1][0], + head, tail =3D os.path.split(x[1][0]) + tail =3D tail[len("._cfg0000_"):] + fpath =3D os.path.join(head, tail) + writemsg_level("config file '%s' needs updating.\n" % fpath, level=3Dlogging.INFO, noiselevel=3D-1) else: writemsg_level("%d config files in '%s' need updating.\n" % \