This commit is contained in:
ThomasV 2017-08-27 10:48:41 +02:00
parent 6d2b53cdca
commit 2e567fc86a
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ class Imported_KeyStore(Software_KeyStore):
return True
def check_password(self, password):
pubkey = self.keypairs.keys()[0]
pubkey = list(self.keypairs.keys())[0]
self.get_private_key(pubkey, password)
def import_key(self, sec, password):