Fix wrong password method to also say 'passphrase'

pull/83/head
khuxkm fbexl 2019-09-06 13:50:38 -04:00
parent dc8016d21b
commit 1a9ba5bb31
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ class PrivateKey(object):
logging.error(str(exc))
msg = 'Invalid key'
if self.password:
msg += ' or wrong password "{}" for decrypting it.'.format(
msg += ' or wrong passphrase "{}" for decrypting it.'.format(
self.password)
raise InvalidValueError(msg)