mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
fixed path errors in revoking by key process
This commit is contained in:
parent
62bdf663f2
commit
ab286e0887
1 changed files with 1 additions and 1 deletions
|
|
@ -562,7 +562,7 @@ def revoke(config, unused_plugins): # TODO: coop with renewal config
|
|||
if config.key_path is not None: # revocation by cert key
|
||||
logger.debug("Revoking %s using cert key %s",
|
||||
config.cert_path[0], config.key_path[0])
|
||||
crypto_util.verify_cert_matches_priv_key(config.cert_path[0], config.key_path[1])
|
||||
crypto_util.verify_cert_matches_priv_key(config.cert_path[0], config.key_path[0])
|
||||
key = jose.JWK.load(config.key_path[1])
|
||||
else: # revocation by account key
|
||||
logger.debug("Revoking %s using Account Key", config.cert_path[0])
|
||||
|
|
|
|||
Loading…
Reference in a new issue