Remove redundant check for pyopenssl (#67901)

pull/67908/head
gp 5 years ago committed by GitHub
parent 99e657162f
commit 44d8ce9b31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
bugfixes:
- get_certificate - Fix cryptography backend when pyopenssl is unavailable (https://github.com/ansible/ansible/issues/67900)

@ -258,9 +258,6 @@ def main():
changed=False,
)
if not PYOPENSSL_FOUND:
module.fail_json(msg=missing_required_lib('pyOpenSSL >= 0.15'), exception=PYOPENSSL_IMP_ERR)
if timeout:
setdefaulttimeout(timeout)

Loading…
Cancel
Save