mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-13 07:33:47 +00:00
Prompt for "Key password" not "Keychain password"
This commit is contained in:
parent
0165e4a09f
commit
ab75e74884
1 changed files with 2 additions and 2 deletions
|
@ -130,8 +130,8 @@ class Key(object):
|
|||
else:
|
||||
password, password2 = 1, 2
|
||||
while password != password2:
|
||||
password = getpass('Keychain password: ')
|
||||
password2 = getpass('Keychain password again: ')
|
||||
password = getpass('Key password: ')
|
||||
password2 = getpass('Key password again: ')
|
||||
if password != password2:
|
||||
print 'Passwords do not match'
|
||||
key = Key()
|
||||
|
|
Loading…
Add table
Reference in a new issue