hgext/phabricator.py
changeset 41970 51ba9fbcca52
parent 41950 e7b84ffb06d9
child 41971 99e00e5c4746
--- 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))