Skip to content

Commit 1669483

Browse files
committed
Fix line length in CloudEndure.terminate
1 parent b854b1b commit 1669483

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cloudendure/cloudendure.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,8 @@ def terminate(self) -> bool:
853853
)
854854
if delete_response.status_code != 202:
855855
print(
856-
f"Response code: {delete_response.status_code}\n{ref_name} replica {replica} did not terminate.\n{delete_response.text}"
856+
f"Response code: {delete_response.status_code}\n"
857+
f"{ref_name} replica {replica} did not terminate.\n{delete_response.text}"
857858
)
858859
success = False
859860
else:

0 commit comments

Comments
 (0)