Show More
@@ -1518,7 +1518,12 b' class workingctx(committablectx):' | |||
|
1518 | 1518 | p = p[:-1] |
|
1519 | 1519 | # use unfiltered repo to delay/avoid loading obsmarkers |
|
1520 | 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 | 1528 | def _fileinfo(self, path): |
|
1524 | 1529 | # populate __dict__['_manifest'] as workingctx has no _manifestdelta |
General Comments 0
You need to be logged in to leave comments.
Login now