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 B01C71381F3 for ; Mon, 24 Dec 2012 23:26:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23E7B21C004; Mon, 24 Dec 2012 23:26:10 +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 A779B21C004 for ; Mon, 24 Dec 2012 23:26:09 +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 B360933D7EE for ; Mon, 24 Dec 2012 23:26:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 522BAE543C for ; Mon, 24 Dec 2012 23:26:07 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1356391557.21fc8b25cbe7e1869982083394df59d68a6fe5db.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: misc/ X-VCS-Repository: proj/elfix X-VCS-Files: misc/link_maps misc/link_maps_portage X-VCS-Directories: misc/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 21fc8b25cbe7e1869982083394df59d68a6fe5db X-VCS-Branch: master Date: Mon, 24 Dec 2012 23:26:07 +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: dfadec95-84e1-440a-9874-294931d4e31f X-Archives-Hash: d77f2e3241c3bbd32d8dd8b737b127a7 commit: 21fc8b25cbe7e1869982083394df59d68a6fe5db Author: Anthony G. Basile gentoo org> AuthorDate: Mon Dec 24 23:25:57 2012 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Dec 24 23:25:57 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=21fc8b25 misc/link_maps_portage: fix python2-isms --- misc/link_maps | 2 +- misc/link_maps_portage | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/link_maps b/misc/link_maps index 9753794..a7c59ba 100755 --- a/misc/link_maps +++ b/misc/link_maps @@ -112,7 +112,7 @@ def get_soname_needed( object_needed, library2soname ): try: (soname, abi_check) = library2soname[elf] if abi != abi_check: - print "This should never happen!" + print("This should never happen!") sys.exit(1) soname_needed.setdefault(abi,{}).update({soname:object_needed[abi][elf]}) except KeyError: diff --git a/misc/link_maps_portage b/misc/link_maps_portage index 28bc0ea..9b774bc 100755 --- a/misc/link_maps_portage +++ b/misc/link_maps_portage @@ -102,7 +102,7 @@ def get_soname_needed( object_needed, library2soname ): try: (soname, abi_check) = library2soname[elf] if abi != abi_check: - print "This should never happen!" + print("This should never happen!") sys.exit(1) soname_needed.setdefault(abi,{}).update({soname:object_needed[abi][elf]}) except KeyError: