[Differential] [Closed] D56: py3: make localrepo filtered repo cache work on py3

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Fri Jul 14 12:54:42 EDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG1bb209d08a34: py3: make localrepo filtered repo cache work on py3 (authored by martinvonz).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D56?vs=74&id=134

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

AFFECTED FILES
  mercurial/localrepo.py

CHANGE DETAILS

Index: mercurial/localrepo.py
===================================================================
--- mercurial/localrepo.py
+++ mercurial/localrepo.py
@@ -553,7 +553,7 @@
             # class of this repo. Give it a name containing the
             # filter name to aid debugging.
             bases = (repoview.repoview, key)
-            cls = type('%sfilteredrepo' % name, bases, {})
+            cls = type(r'%sfilteredrepo' % name, bases, {})
             self._filteredrepotypes[key] = cls
 
         return self._filteredrepotypes[key](self, name)


EMAIL PREFERENCES
  https://phab.mercurial-scm.org/settings/panel/emailpreferences/

To: martinvonz, durin42
Cc: dsp, mercurial-devel


More information about the Mercurial-devel mailing list