# HG changeset patch # User Ian Moody # Date 2019-10-23 21:24:14 # Node ID e57bf37eaeb59078919e2f43b40eb61b9b03ffe1 # Parent 3733533c22a410bd7e168e5fefb1a74ef27f3990 phabricator: use True primitive instead of b'true' for phabupdate actions Something I'd missed in the creatediff port. This didn't matter before with the old PHP form style wireformat, but breaks with the new arcanist format. Differential Revision: https://phab.mercurial-scm.org/D7152 diff --git a/hgext/phabricator.py b/hgext/phabricator.py --- a/hgext/phabricator.py +++ b/hgext/phabricator.py @@ -1613,7 +1613,7 @@ def phabupdate(ui, repo, spec, **opts): actions = [] for f in flags: - actions.append({b'type': f, b'value': b'true'}) + actions.append({b'type': f, b'value': True}) drevs = querydrev(repo, spec) for i, drev in enumerate(drevs):