Skip to content

Commit ad21463

Browse files
committed
Added extra newline at the start of the public key.
1 parent e59eeb0 commit ad21463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/windows/print.publickey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
for i, cert in enumerate(certificates):
1616
if cert.chosen['tbs_certificate']['subject'].native['common_name'] == COMMON_NAME:
1717
cert_b64 = base64.b64encode(cert.dump()).decode()
18-
print(f"-----BEGIN CERTIFICATE-----")
18+
print(f"\n-----BEGIN CERTIFICATE-----")
1919
print('\n'.join([cert_b64[j:j+64] for j in range(0, len(cert_b64), 64)]))
2020
print(f"-----END CERTIFICATE-----")

0 commit comments

Comments
 (0)