mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-12 11:55:53 +00:00
bugfix: password unset after saving it to keyring
This commit is contained in:
parent
f39601c69e
commit
542ce1216d
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ def get_password(username, resource):
|
|||
prompt = 'Save this password in the keyring? [y/N] '
|
||||
answer = raw_input(prompt)
|
||||
if answer.lower() == 'y':
|
||||
password = keyring.set_password(
|
||||
keyring.set_password(
|
||||
'vdirsyncer:' + hostname, username, password)
|
||||
|
||||
return password
|
||||
|
|
|
|||
Loading…
Reference in a new issue