Update certificate.py: moar typo @_@

This commit is contained in:
Alexandre Aubin 2024-06-09 12:08:18 +02:00 committed by GitHub
parent d2259928ce
commit 37c99082f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -588,7 +588,7 @@ def _prepare_certificate_signing_request(domain, key_file, output_folder):
crypto.X509Extension(
b"subjectAltName",
False,
(", ".join(["DNS:{sub}.{domain}" for sub in sanlist])).encode("utf-8"),
(", ".join([f"DNS:{sub}.{domain}" for sub in sanlist])).encode("utf-8"),
)
]
)