Show More
@@ -251,7 +251,8 b' def callconduit(ui, name, params):' | |||
|
251 | 251 | parsed = pycompat.rapply( |
|
252 | 252 | lambda x: encoding.unitolocal(x) if isinstance(x, pycompat.unicode) |
|
253 | 253 | else x, |
|
254 | json.loads(body) | |
|
254 | # json.loads only accepts bytes from py3.6+ | |
|
255 | json.loads(encoding.unifromlocal(body)) | |
|
255 | 256 | ) |
|
256 | 257 | if parsed.get(b'error_code'): |
|
257 | 258 | msg = (_(b'Conduit Error (%s): %s') |
General Comments 0
You need to be logged in to leave comments.
Login now