py3: handle keyword arguments correctly in ui.py
authorPulkit Goyal <7895pulkit@gmail.com>
Sun, 10 Dec 2017 04:50:03 +0530
changeset 35373 4e377c43e80b
parent 35372 073bc922d349
child 35374 7d2292416046
py3: handle keyword arguments correctly in ui.py Differential Revision: https://phab.mercurial-scm.org/D1646
mercurial/ui.py
--- a/mercurial/ui.py	Sun Dec 10 04:49:53 2017 +0530
+++ b/mercurial/ui.py	Sun Dec 10 04:50:03 2017 +0530
@@ -894,9 +894,9 @@
         "cmdname.type" is recommended. For example, status issues
         a label of "status.modified" for modified files.
         '''
-        if self._buffers and not opts.get('prompt', False):
+        if self._buffers and not opts.get(r'prompt', False):
             if self._bufferapplylabels:
-                label = opts.get('label', '')
+                label = opts.get(r'label', '')
                 self._buffers[-1].extend(self.label(a, label) for a in args)
             else:
                 self._buffers[-1].extend(args)
@@ -907,7 +907,7 @@
         else:
             msgs = args
             if self._colormode is not None:
-                label = opts.get('label', '')
+                label = opts.get(r'label', '')
                 msgs = [self.label(a, label) for a in args]
             self._write(*msgs, **opts)
 
@@ -935,7 +935,7 @@
         else:
             msgs = args
             if self._colormode is not None:
-                label = opts.get('label', '')
+                label = opts.get(r'label', '')
                 msgs = [self.label(a, label) for a in args]
             self._write_err(*msgs, **opts)