Submitter | phabricator |
---|---|
Date | Oct. 4, 2019, 5:59 p.m. |
Message ID | <759f84bef30901f899cd9c4a2e491838@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/41956/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/phabricator.py b/hgext/phabricator.py --- a/hgext/phabricator.py +++ b/hgext/phabricator.py @@ -251,7 +251,8 @@ parsed = pycompat.rapply( lambda x: encoding.unitolocal(x) if isinstance(x, pycompat.unicode) else x, - json.loads(body) + # json.loads only accepts bytes from py3.6+ + json.loads(encoding.unifromlocal(body)) ) if parsed.get(b'error_code'): msg = (_(b'Conduit Error (%s): %s')