From c5c110d0b48f02c7817477608e875630571e31bf Mon Sep 17 00:00:00 2001 From: Randall Date: Thu, 14 Jul 2022 02:53:39 -0400 Subject: [PATCH] Minor visual consistency tweak for Haiku gpg key generation --- bin/sshyp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sshyp.py b/bin/sshyp.py index b3255b3..981ed45 100755 --- a/bin/sshyp.py +++ b/bin/sshyp.py @@ -227,7 +227,7 @@ def tweak(): # runs configuration wizard https://github.com/rwinkhart/sshyp\nExpire-Date: 0') if uname()[0] == 'Haiku': run(gpg + ' --batch --generate-key --passphrase ' + "'" + - input('Please enter the passphrase to\nprotect your new key\nPassphrase: ') + "'" + " '" + + input('\ngpg passphrase: ') + "'" + " '" + path.expanduser('~/.config/sshyp/gpg-gen') + "'", shell=True) else: run(f"{gpg} --batch --generate-key '{path.expanduser('~/.config/sshyp/gpg-gen')}'", shell=True)