From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3A309138247 for ; Wed, 27 Nov 2013 03:27:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC458E0964; Wed, 27 Nov 2013 03:27:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 656D8E0964 for ; Wed, 27 Nov 2013 03:27:04 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 27F0533F165 for ; Wed, 27 Nov 2013 03:27:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id C80AFE54FD for ; Wed, 27 Nov 2013 03:27:00 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1385522746.ff8b17301527f35079eec332a2884337f797f837.vapier@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/portageq X-VCS-Directories: bin/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: ff8b17301527f35079eec332a2884337f797f837 X-VCS-Branch: master Date: Wed, 27 Nov 2013 03:27:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3831194f-d264-4e83-8ae6-52ed91c8880a X-Archives-Hash: 7412667714edf0e3bf39564015b177f7 commit: ff8b17301527f35079eec332a2884337f797f837 Author: Sebastian Luther gmx de> AuthorDate: Tue Nov 26 20:15:37 2013 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Nov 27 03:25:46 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=ff8b1730 portageq envvar: shell escape variable (bug 492314) --- bin/portageq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/portageq b/bin/portageq index 82735f1..f29c124 100755 --- a/bin/portageq +++ b/bin/portageq @@ -740,7 +740,7 @@ def envvar(argv): for arg in argv: if verbose: - print(arg +"='"+ portage.settings[arg] +"'") + print(arg + "=" + portage._shell_quote(portage.settings[arg])) else: print(portage.settings[arg])