From 9362a7fd41b572515c2e0c861e5650dc1c9691fc Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 13 Mar 2021 10:07:57 +0000 Subject: [PATCH 1/3] kde --- speaker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/speaker.py b/speaker.py index e77444d4d..15a3ee146 100644 --- a/speaker.py +++ b/speaker.py @@ -87,6 +87,7 @@ def _speakerPronounce(baseDir: str, sayText: str, translate: {}) -> str: "PSQL": "Postgres S-Q-L", "SQL": "S-Q-L", "gdpr": "G-D-P-R", + "kde": "K-D-E", "coop": "co-op", "KMail": "K-Mail", "gmail": "G-mail", From 9e4c3e078b1a43cd4980cff28b781647509869ae Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 13 Mar 2021 10:10:02 +0000 Subject: [PATCH 2/3] kmail --- speaker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/speaker.py b/speaker.py index 15a3ee146..fbae7287f 100644 --- a/speaker.py +++ b/speaker.py @@ -90,6 +90,7 @@ def _speakerPronounce(baseDir: str, sayText: str, translate: {}) -> str: "kde": "K-D-E", "coop": "co-op", "KMail": "K-Mail", + "kmail": "K-Mail", "gmail": "G-mail", "Gmail": "G-mail", "OpenPGP": "Open P-G-P", From 45e3ca7d48699e3108b4b2c41db28600a4249606 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 13 Mar 2021 11:13:35 +0000 Subject: [PATCH 3/3] Manual password entry --- epicyon.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/epicyon.py b/epicyon.py index ccb9c3a3c..5e1032a8c 100644 --- a/epicyon.py +++ b/epicyon.py @@ -11,6 +11,7 @@ import shutil import sys import time import argparse +import getpass from person import getActorJson from person import createPerson from person import createGroup @@ -1793,8 +1794,10 @@ if args.notifications: sys.exit() if not args.password: - print('Specify a password with the --password option') - sys.exit() + args.password = getpass.getpass('Password: ') + if not args.password: + print('Specify a password with the --password option') + sys.exit() proxyType = None if args.tor or domain.endswith('.onion'):