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 1RRB6F-00076Y-T5 for garchives@archives.gentoo.org; Thu, 17 Nov 2011 23:10:32 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0696E06BF; Thu, 17 Nov 2011 23:10:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7D846E06BF for ; Thu, 17 Nov 2011 23:10:23 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE3CC1B401D for ; Thu, 17 Nov 2011 23:10:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id E1C7980042 for ; Thu, 17 Nov 2011 23:10:21 +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: Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/main.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: c2b1353843af26ffbad8b9f95533e4c691c93443 Date: Thu, 17 Nov 2011 23:10:21 +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: 15a9ee4f-a0e5-403f-a23c-e58ab4accbb4 X-Archives-Hash: 2c966efeed1769a6fd889b1d330fe560 commit: c2b1353843af26ffbad8b9f95533e4c691c93443 Author: Zac Medico gentoo org> AuthorDate: Thu Nov 17 13:44:41 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Nov 17 13:44:41 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dc2b13538 Show action as --action in emerge.log arg list. --- pym/_emerge/main.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index 62af0ad..72984da 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -1906,7 +1906,7 @@ def emerge_main(args=3DNone): opt_list.append("%s=3D%s" % (opt, arg)) myelogstr=3D" ".join(opt_list) if myaction: - myelogstr+=3D" "+myaction + myelogstr +=3D " --" + myaction if myfiles: myelogstr +=3D " " + " ".join(oldargs) emergelog(xterm_titles, " *** emerge " + myelogstr)