# HG changeset patch # User Augie Fackler # Date 2018-01-18 02:42:56 # Node ID 87b085a4f9d117553ba43d3c15fa792346565602 # Parent aad39713ef352529681bbf3a5d85ac8251c50f2c bundlerepo: use native str when peeking in __dict__ # skip-blame since it's just a string constant prefix Differential Revision: https://phab.mercurial-scm.org/D1892 diff --git a/mercurial/bundlerepo.py b/mercurial/bundlerepo.py --- a/mercurial/bundlerepo.py +++ b/mercurial/bundlerepo.py @@ -402,7 +402,7 @@ class bundlerepository(localrepo.localre # manifestlog implementation did not consume the manifests from the # changegroup (ex: it might be consuming trees from a separate bundle2 # part instead). So we need to manually consume it. - if 'filestart' not in self.__dict__: + if r'filestart' not in self.__dict__: self._consumemanifest() return self.filestart