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 2db4023 commit 73e8e69Copy full SHA for 73e8e69
centml/sdk/utils/client_certs.py
@@ -85,7 +85,7 @@ def save_pem_file(service_name, client_private_key, client_certificate):
85
86
try:
87
# Save the combined PEM file
88
- with open(ca_file_path, "w") as combined_pem_file:
+ with open(ca_file_path, 'w') as combined_pem_file:
89
combined_pem_file.write(client_private_key + client_certificate)
90
click.echo(f"Combined PEM file for accessing the private endpoint has been saved to {ca_file_path}")
91
0 commit comments