Format CLI to keep modern openssls happy

- This is somewhat ominous
This commit is contained in:
Peter Eckersley
2016-12-21 14:38:26 -08:00
parent ac02cd9cb8
commit 245b84ab78
+2 -3
View File
@@ -7,8 +7,7 @@ from certbot import util
logger = logging.getLogger(__name__)
REV_LABEL = "**Revoked**"
EXP_LABEL = "**Expired**"
REV_LABEL = "REVOKED"
INSTALL_LABEL = "(Installed)"
@@ -36,7 +35,7 @@ def revoked_status(cert_path, chain_path):
try:
output, _ = util.run_script(
["openssl", "ocsp",
"-no_nonce", "-header", "Host", host,
"-no_nonce", "-header", "Host="+host,
"-issuer", chain_path,
"-cert", cert_path,
"-url", url,