##// END OF EJS Templates
store: do not drop the final `/` when creating manifestlog instance...
marmoute -
r51521:3ea3767c default
parent child Browse files
Show More
@@ -554,7 +554,7 b' class RevlogStoreEntry(BaseStoreEntry):'
554 if self.is_changelog:
554 if self.is_changelog:
555 return changelog.changelog(repo.svfs)
555 return changelog.changelog(repo.svfs)
556 elif self.is_manifestlog:
556 elif self.is_manifestlog:
557 mandir = self.target_id.rstrip(b'/')
557 mandir = self.target_id
558 return manifest.manifestrevlog(
558 return manifest.manifestrevlog(
559 repo.nodeconstants, repo.svfs, tree=mandir
559 repo.nodeconstants, repo.svfs, tree=mandir
560 )
560 )
General Comments 0
You need to be logged in to leave comments. Login now