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 451449d commit 0e448f0Copy full SHA for 0e448f0
mergin/client.py
@@ -221,7 +221,9 @@ def _do_request(self, request):
221
f"{key}: {', '.join(map(str, value))}"
222
for key, value in server_response.items()
223
if isinstance(value, list)
224
- ) or str(server_response) # Fallback to raw response if structure is unexpected
+ ) or str(
225
+ server_response
226
+ ) # Fallback to raw response if structure is unexpected
227
else:
228
err_detail = str(server_response)
229
0 commit comments