##// END OF EJS Templates
copies: remove use of manifest.matches...
Durham Goode -
r31256:5a909a80 default
parent child Browse files
Show More
@@ -149,10 +149,7 b' def _computeforwardmissing(a, b, match=N'
149 """
149 """
150 ma = a.manifest()
150 ma = a.manifest()
151 mb = b.manifest()
151 mb = b.manifest()
152 if match:
152 return mb.filesnotin(ma, match=match)
153 ma = ma.matches(match)
154 mb = mb.matches(match)
155 return mb.filesnotin(ma)
156
153
157 def _forwardcopies(a, b, match=None):
154 def _forwardcopies(a, b, match=None):
158 '''find {dst@b: src@a} copy mapping where a is an ancestor of b'''
155 '''find {dst@b: src@a} copy mapping where a is an ancestor of b'''
General Comments 0
You need to be logged in to leave comments. Login now