py3: handle keyword arguments correctly in subrepo.py
authorPulkit Goyal <7895pulkit@gmail.com>
Sun, 10 Dec 2017 04:49:40 +0530
changeset 35371 c999d246e48c
parent 35370 c5853c9a6545
child 35372 073bc922d349
py3: handle keyword arguments correctly in subrepo.py Differential Revision: https://phab.mercurial-scm.org/D1644
mercurial/subrepo.py
--- a/mercurial/subrepo.py	Sun Dec 10 04:49:29 2017 +0530
+++ b/mercurial/subrepo.py	Sun Dec 10 04:49:40 2017 +0530
@@ -60,8 +60,8 @@
 class SubrepoAbort(error.Abort):
     """Exception class used to avoid handling a subrepo error more than once"""
     def __init__(self, *args, **kw):
-        self.subrepo = kw.pop('subrepo', None)
-        self.cause = kw.pop('cause', None)
+        self.subrepo = kw.pop(r'subrepo', None)
+        self.cause = kw.pop(r'cause', None)
         error.Abort.__init__(self, *args, **kw)
 
 def annotatesubrepoerror(func):
@@ -1244,7 +1244,7 @@
         if not self.ui.interactive():
             # Making stdin be a pipe should prevent svn from behaving
             # interactively even if we can't pass --non-interactive.
-            extrakw['stdin'] = subprocess.PIPE
+            extrakw[r'stdin'] = subprocess.PIPE
             # Starting in svn 1.5 --non-interactive is a global flag
             # instead of being per-command, but we need to support 1.4 so
             # we have to be intelligent about what commands take