diff hgext/mq.py @ 32193:c6cbd0b66465

py3: convert key to str to make kwargs.pop work in mq The keys are passed here and there as unicodes and our transformer make things bytes. Due to that, mq was not poped and this results in error on Py3. Here we abuse r'' to make that str on Python 3.
author Pulkit Goyal <7895pulkit@gmail.com>
date Fri, 05 May 2017 04:48:42 +0530
parents 448acdee9161
children 46ba2cdda476
line wrap: on
line diff
--- a/hgext/mq.py	Fri May 05 04:41:45 2017 +0530
+++ b/hgext/mq.py	Fri May 05 04:48:42 2017 +0530
@@ -3540,7 +3540,7 @@
     """Add --mq option to operate on patch repository instead of main"""
 
     # some commands do not like getting unknown options
-    mq = kwargs.pop('mq', None)
+    mq = kwargs.pop(r'mq', None)
 
     if not mq:
         return orig(ui, repo, *args, **kwargs)