Mercurial > hg > mercurial-source
diff mercurial/bundlerepo.py @ 36619:87b085a4f9d1
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
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 17 Jan 2018 21:42:56 -0500 (2018-01-18) |
parents | c97639ad6874 |
children | 5bc7ff103081 |
line wrap: on
line diff
--- a/mercurial/bundlerepo.py +++ b/mercurial/bundlerepo.py @@ -402,7 +402,7 @@ # 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