D2356: py3: add a r'' prefix to prevent transformer from adding b''

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Tue Feb 20 08:34:01 EST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG1eee42aed306: py3: add a r'' prefix to prevent transformer from adding b'' (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2356?vs=5924&id=5934

REVISION DETAIL
  https://phab.mercurial-scm.org/D2356

AFFECTED FILES
  hgext/convert/monotone.py

CHANGE DETAILS

diff --git a/hgext/convert/monotone.py b/hgext/convert/monotone.py
--- a/hgext/convert/monotone.py
+++ b/hgext/convert/monotone.py
@@ -85,7 +85,7 @@
             return self.mtnrunsingle(*args, **kwargs)
 
     def mtnrunsingle(self, *args, **kwargs):
-        kwargs['d'] = self.path
+        kwargs[r'd'] = self.path
         return self.run0('automate', *args, **kwargs)
 
     def mtnrunstdio(self, *args, **kwargs):



To: pulkit, #hg-reviewers, yuja
Cc: mercurial-devel


More information about the Mercurial-devel mailing list