py3: fix kwargs handling in qgurad in hgext/mq.py
authorPulkit Goyal <7895pulkit@gmail.com>
Sat, 19 May 2018 00:21:59 +0530
changeset 38049 88c2d0e639b1
parent 38048 b403e87df069
child 38050 558e5504a4f8
py3: fix kwargs handling in qgurad in hgext/mq.py # skip-blame because just r'' prefixes Differential Revision: https://phab.mercurial-scm.org/D3581
hgext/mq.py
--- a/hgext/mq.py	Sat May 19 00:19:56 2018 +0530
+++ b/hgext/mq.py	Sat May 19 00:21:59 2018 +0530
@@ -2872,7 +2872,7 @@
     patch = None
     args = list(args)
     if opts.get(r'list'):
-        if args or opts.get('none'):
+        if args or opts.get(r'none'):
             raise error.Abort(_('cannot mix -l/--list with options or '
                                'arguments'))
         for i in xrange(len(q.series)):
@@ -2886,7 +2886,7 @@
         patch = args.pop(0)
     if patch is None:
         raise error.Abort(_('no patch to work with'))
-    if args or opts.get('none'):
+    if args or opts.get(r'none'):
         idx = q.findseries(patch)
         if idx is None:
             raise error.Abort(_('no patch named %s') % patch)