Mercurial > hg
changeset 41970:51ba9fbcca52
py3: use pycompat.byteskwargs on opts in phabricator.py
Differential Revision: https://phab.mercurial-scm.org/D6107
author | Ian Moody <moz-ian@perix.co.uk> |
---|---|
date | Fri, 08 Mar 2019 18:30:12 +0000 |
parents | 76361969662a |
children | 99e00e5c4746 |
files | hgext/phabricator.py |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/phabricator.py Fri Dec 21 17:12:39 2018 +0100 +++ b/hgext/phabricator.py Fri Mar 08 18:30:12 2019 +0000 @@ -505,6 +505,7 @@ phabsend will check obsstore and the above association to decide whether to update an existing Differential Revision, or create a new one. """ + opts = pycompat.byteskwargs(opts) revs = list(revs) + opts.get(b'rev', []) revs = scmutil.revrange(repo, revs) @@ -955,6 +956,7 @@ If --stack is given, follow dependencies information and read all patches. It is equivalent to the ``:`` operator. """ + opts = pycompat.byteskwargs(opts) if opts.get(b'stack'): spec = b':(%s)' % spec drevs = querydrev(repo, spec) @@ -973,6 +975,7 @@ DREVSPEC selects revisions. See :hg:`help phabread` for its usage. """ + opts = pycompat.byteskwargs(opts) flags = [n for n in b'accept reject abandon reclaim'.split() if opts.get(n)] if len(flags) > 1: raise error.Abort(_(b'%s cannot be used together') % b', '.join(flags))