Show More
@@ -2224,7 +2224,7 b' class overlayworkingctx(committablectx):' | |||||
2224 | ] |
|
2224 | ] | |
2225 |
|
2225 | |||
2226 | def p1copies(self): |
|
2226 | def p1copies(self): | |
2227 | copies = self._repo._wrappedctx.p1copies().copy() |
|
2227 | copies = {} | |
2228 | narrowmatch = self._repo.narrowmatch() |
|
2228 | narrowmatch = self._repo.narrowmatch() | |
2229 | for f in self._cache.keys(): |
|
2229 | for f in self._cache.keys(): | |
2230 | if not narrowmatch(f): |
|
2230 | if not narrowmatch(f): | |
@@ -2236,7 +2236,7 b' class overlayworkingctx(committablectx):' | |||||
2236 | return copies |
|
2236 | return copies | |
2237 |
|
2237 | |||
2238 | def p2copies(self): |
|
2238 | def p2copies(self): | |
2239 | copies = self._repo._wrappedctx.p2copies().copy() |
|
2239 | copies = {} | |
2240 | narrowmatch = self._repo.narrowmatch() |
|
2240 | narrowmatch = self._repo.narrowmatch() | |
2241 | for f in self._cache.keys(): |
|
2241 | for f in self._cache.keys(): | |
2242 | if not narrowmatch(f): |
|
2242 | if not narrowmatch(f): |
General Comments 0
You need to be logged in to leave comments.
Login now