mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
Removed **locals() construction
This commit is contained in:
parent
69e0f27a77
commit
9cfa5f27b0
1 changed files with 2 additions and 1 deletions
|
|
@ -28,7 +28,8 @@ def _openssl(hostname, args, input=None):
|
|||
:param input: stdin to binary
|
||||
:return: (stdout, stderr)
|
||||
"""
|
||||
openssl_cmd = OCSP_OPENSSL_CMD.format(**locals()).split(" ") + list(args)
|
||||
openssl_cmd = OCSP_OPENSSL_CMD.format(hostname=hostname)
|
||||
openssl_cmd = openssl_cmd.split(" ") + list(args)
|
||||
|
||||
log.debug("Calling openssl binary with arguments: %s", openssl_cmd[1:])
|
||||
openssl = Popen(openssl_cmd, stdin=PIPE, stdout=PIPE, stderr=PIPE)
|
||||
|
|
|
|||
Loading…
Reference in a new issue