mirror of https://gitlab.com/bashrc2/epicyon
Merge branch 'main' of ssh://code.freedombone.net:2222/bashrc/epicyon into main
commit
48b2aadc22
|
|
@ -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
|
||||
|
|
@ -1792,6 +1793,8 @@ if args.notifications:
|
|||
print('Specify a nickname with the --nickname option')
|
||||
sys.exit()
|
||||
|
||||
if not args.password:
|
||||
args.password = getpass.getpass('Password: ')
|
||||
if not args.password:
|
||||
print('Specify a password with the --password option')
|
||||
sys.exit()
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue