##// END OF EJS Templates
changectx: mark the parents of the working copy as non filtered...
marmoute -
r44206:f3b23d5c default
parent child Browse files
Show More
@@ -1518,7 +1518,12 b' class workingctx(committablectx):'
1518 p = p[:-1]
1518 p = p[:-1]
1519 # use unfiltered repo to delay/avoid loading obsmarkers
1519 # use unfiltered repo to delay/avoid loading obsmarkers
1520 unfi = self._repo.unfiltered()
1520 unfi = self._repo.unfiltered()
1521 return [changectx(self._repo, unfi.changelog.rev(n), n) for n in p]
1521 return [
1522 changectx(
1523 self._repo, unfi.changelog.rev(n), n, maybe_filtered=False
1524 )
1525 for n in p
1526 ]
1522
1527
1523 def _fileinfo(self, path):
1528 def _fileinfo(self, path):
1524 # populate __dict__['_manifest'] as workingctx has no _manifestdelta
1529 # populate __dict__['_manifest'] as workingctx has no _manifestdelta
General Comments 0
You need to be logged in to leave comments. Login now