We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e59eeb0 commit ad21463Copy full SHA for ad21463
build/windows/print.publickey.py
@@ -15,6 +15,6 @@
15
for i, cert in enumerate(certificates):
16
if cert.chosen['tbs_certificate']['subject'].native['common_name'] == COMMON_NAME:
17
cert_b64 = base64.b64encode(cert.dump()).decode()
18
- print(f"-----BEGIN CERTIFICATE-----")
+ print(f"\n-----BEGIN CERTIFICATE-----")
19
print('\n'.join([cert_b64[j:j+64] for j in range(0, len(cert_b64), 64)]))
20
print(f"-----END CERTIFICATE-----")
0 commit comments