diff -r dc36535a5edc -r 9db77d46de79 hgext/phabricator.py --- a/hgext/phabricator.py Mon Jan 06 14:07:43 2025 -0500 +++ b/hgext/phabricator.py Mon Jan 06 14:15:40 2025 -0500 @@ -490,7 +490,7 @@ lambda x: encoding.unifromlocal(x) if isinstance(x, bytes) else x, callconduit(ui, name, params), ) - s = json.dumps(result, sort_keys=True, indent=2, separators=(u',', u': ')) + s = json.dumps(result, sort_keys=True, indent=2, separators=(',', ': ')) ui.write(b'%s\n' % encoding.unitolocal(s))