commit: 73734eebcef4a9222c170375a3745d19c74f614e Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Tue Mar 1 16:17:04 2016 +0000 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> 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
