##// END OF EJS Templates
largefiles: simplify iteration over standins...
Martin von Zweigbergk -
r22525:764127f5 default
parent child Browse files
Show More
@@ -193,9 +193,7 b' def reposetup(ui, repo):'
193 193
194 194 # Standins no longer found in lfdirstate has been
195 195 # removed
196 for standin in ctx1.manifest():
197 if not lfutil.isstandin(standin):
198 continue
196 for standin in ctx1.walk(lfutil.getstandinmatcher(self)):
199 197 lfile = lfutil.splitstandin(standin)
200 198 if not match(lfile):
201 199 continue
General Comments 0
You need to be logged in to leave comments. Login now