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.
2 parents 2ea4452 + b2d3fb8 commit 53d4c97Copy full SHA for 53d4c97
rsconnect/api.py
@@ -52,13 +52,12 @@ def handle_bad_response(self, response):
52
raise RSConnectException(error)
53
if response.status < 200 or response.status > 299:
54
raise RSConnectException(
55
- "Received an unexpected response from %s (calling %s): %s %s\n%s"
+ "Received an unexpected response from %s (calling %s): %s %s"
56
% (
57
self.remote_name,
58
response.full_uri,
59
response.status,
60
response.reason,
61
- response.response_body,
62
)
63
64
0 commit comments