Skip to content

Commit 610f573

Browse files
asf
1 parent 4586a3e commit 610f573

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

centralnicreseller/apiconnector/apiclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def getPOSTData(self, cmd, secured=False):
124124
tmp = cmd.rstrip("\n")
125125
else:
126126
tmp = "\n".join(
127-
f"{key}={re.sub('[\r\n]', '', str(cmd[key]))}"
127+
"{}={}".format(key, re.sub(r'[\r\n]', '', str(cmd[key])))
128128
for key in sorted(cmd.keys()) if cmd[key] is not None
129129
)
130130

htmlcov/class_index.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

htmlcov/function_index.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

htmlcov/index.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

htmlcov/status.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)