mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 21:18:32 +02:00
remove else and use stderr
This commit is contained in:
parent
f784fde7db
commit
660dc4fc28
1 changed files with 1 additions and 3 deletions
|
@ -60,8 +60,6 @@ def create_password(
|
||||||
|
|
||||||
if yesno("Do you want to store the password in your keychain?", default=True):
|
if yesno("Do you want to store the password in your keychain?", default=True):
|
||||||
set_keychain(journal_name, pw)
|
set_keychain(journal_name, pw)
|
||||||
else:
|
|
||||||
pass
|
|
||||||
return pw
|
return pw
|
||||||
|
|
||||||
|
|
||||||
|
@ -111,7 +109,7 @@ def set_keychain(journal_name, password):
|
||||||
keyring.set_password("jrnl", journal_name, password)
|
keyring.set_password("jrnl", journal_name, password)
|
||||||
except keyring.errors.NoKeyringError:
|
except keyring.errors.NoKeyringError:
|
||||||
print(
|
print(
|
||||||
"Keyring backend not found. Please install one of the supported backends by visiting: https://pypi.org/project/keyring/"
|
"Keyring backend not found. Please install one of the supported backends by visiting: https://pypi.org/project/keyring/",file=sys.stderr
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue