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 CA77B1388C1 for ; Tue, 1 Mar 2016 16:18:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF7F4E07D6; Tue, 1 Mar 2016 16:18:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82131E07D6 for ; Tue, 1 Mar 2016 16:18:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4FF26340A69 for ; Tue, 1 Mar 2016 16:18:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D9CFBCFB for ; Tue, 1 Mar 2016 16:18:53 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1456849024.73734eebcef4a9222c170375a3745d19c74f614e.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys-gen/gkeygen/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys-gen/gkeygen/actions.py X-VCS-Directories: gkeys-gen/gkeygen/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 73734eebcef4a9222c170375a3745d19c74f614e X-VCS-Branch: master Date: Tue, 1 Mar 2016 16:18:53 +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: de5fafe4-2c88-4511-b9d3-a49603b599ad X-Archives-Hash: 67c12266a4e680f49c4bcc05ce3f2185 commit: 73734eebcef4a9222c170375a3745d19c74f614e Author: Brian Dolbec gentoo org> AuthorDate: Tue Mar 1 16:17:04 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Mar 1 16:17:04 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=73734eeb gkeys-gen: Fix typo causing a traceback for bug 572890 X-Gentoo-bug: 572890 X-Gentoo-bug-url: https://bugs.gentoo.org/show_bug.cgi?id=572890 gkeys-gen/gkeygen/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gkeys-gen/gkeygen/actions.py b/gkeys-gen/gkeygen/actions.py index 0bc34cd..aaedcd1 100644 --- a/gkeys-gen/gkeygen/actions.py +++ b/gkeys-gen/gkeygen/actions.py @@ -149,7 +149,7 @@ class Actions(object): ack = py_input("Continue?[y/n]: ").lower() if ack in ["n", "no"]: messages.extend(['', "\nKey generation aborted."]) - return (False. messages) + return (False, messages) elif ack in ["y", "yes"]: # Set the environment to custom gpg directory os.environ['GNUPGHOME'] = gpghome