We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c04fac7 commit 4126c73Copy full SHA for 4126c73
1 file changed
src/xmlsec/test/p11_test.py
@@ -155,11 +155,11 @@ def setup():
155
global signer_cert_pem
156
signer_cert_pem = _tf()
157
openssl_conf = _tf()
158
- logging.debug("Generating OpenSSL config")
+ logging.debug("Generating OpenSSL config for version {}".format(openssl_version))
159
with open(openssl_conf, "w") as f:
160
dynamic_path = (
161
"dynamic_path = %s" % component_path['P11_ENGINE']
162
- if openssl_version == "1.0"
+ if openssl_version.startswith('1.')
163
else ""
164
)
165
f.write("\n".join([
0 commit comments