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 C12DE1381FB for ; Wed, 26 Dec 2012 22:47:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 891AD21C01F; Wed, 26 Dec 2012 22:47:25 +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 1043C21C01F for ; Wed, 26 Dec 2012 22:47:24 +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 EF9A333D7D9 for ; Wed, 26 Dec 2012 22:47:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 50FF6E543D for ; Wed, 26 Dec 2012 22:47:22 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1356562030.d93959f2f295b47a0b17c33ee8df1633a0e479ee.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/repoman X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d93959f2f295b47a0b17c33ee8df1633a0e479ee X-VCS-Branch: master Date: Wed, 26 Dec 2012 22:47:22 +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: 2183f706-4eed-433d-8f2d-4aeed4c98f63 X-Archives-Hash: f627fc28a2a446bfd68608bc13027785 commit: d93959f2f295b47a0b17c33ee8df1633a0e479ee Author: Zac Medico gentoo org> AuthorDate: Wed Dec 26 22:47:10 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Dec 26 22:47:10 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=d93959f2 repoman: fix git_supports_gpg_sign --- bin/repoman | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/repoman b/bin/repoman index b0e5851..45a7ca5 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1022,7 +1022,7 @@ def git_supports_gpg_sign(): if cmd_output: version = re.match(r'^(\d+)\.(\d+)\.(\d+)', cmd_output[-1]) if version is not None: - version = [int(x) for x in version.groups()[1:]] + version = [int(x) for x in version.groups()] if version[0] > 1 or \ (version[0] == 1 and version[1] > 7) or \ (version[0] == 1 and version[1] == 7 and version[2] >= 9):