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 a1dc0ac commit 07198e3Copy full SHA for 07198e3
hpecp/cli/install.py
@@ -149,7 +149,7 @@ def set_gateway_ssl(
149
try:
150
with open(cert_file, "r") as f:
151
cert_content = (
152
- f.read().replace("\n", "\\n").replace("\t", "\\t")
+ f.read().replace("\n", "\n").replace("\t", "\t")
153
)
154
cert_file_name = cert_file
155
except OSError:
@@ -163,7 +163,7 @@ def set_gateway_ssl(
163
164
with open(key_file, "r") as f:
165
key_content = (
166
167
168
key_file_name = key_file
169
0 commit comments