mirror of
https://github.com/certbot/certbot.git
synced 2026-04-28 17:51:04 -04:00
py3fix
This commit is contained in:
parent
fcf7387c3d
commit
7d02b8dbd5
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ class RevocationChecker(object):
|
|||
"-header"] + self.host_args(host)
|
||||
try:
|
||||
output, err = util.run_script(cmd, log=logging.debug)
|
||||
except errors.SubprocessError, e:
|
||||
except errors.SubprocessError as e:
|
||||
logger.info("OCSP check failed for %s (are we offline?)", cert_path)
|
||||
logger.debug("Command was:\n%s\nError was:\n%s", " ".join(cmd), e)
|
||||
return False
|
||||
|
|
|
|||
Loading…
Reference in a new issue