##// END OF EJS Templates
bundlerepo: use native str when peeking in __dict__...
Augie Fackler -
r35851:87b085a4 default
parent child Browse files
Show More
@@ -402,7 +402,7 b' class bundlerepository(localrepo.localre'
402 402 # manifestlog implementation did not consume the manifests from the
403 403 # changegroup (ex: it might be consuming trees from a separate bundle2
404 404 # part instead). So we need to manually consume it.
405 if 'filestart' not in self.__dict__:
405 if r'filestart' not in self.__dict__:
406 406 self._consumemanifest()
407 407
408 408 return self.filestart
General Comments 0
You need to be logged in to leave comments. Login now