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'): diff --git a/speaker.py b/speaker.py index e77444d4d..fbae7287f 100644 --- a/speaker.py +++ b/speaker.py @@ -87,8 +87,10 @@ 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", + "kmail": "K-Mail", "gmail": "G-mail", "Gmail": "G-mail", "OpenPGP": "Open P-G-P",