##// END OF EJS Templates
log: do not redefine cachefunc in walkchangerevs...
Nicolas Dumazet -
r11635:4da35e02 default
parent child Browse files
Show More
@@ -1182,7 +1182,6 b' def walkchangerevs(repo, match, opts, pr'
1182 return rev in wanted
1182 return rev in wanted
1183
1183
1184 for i, window in increasing_windows(0, len(revs)):
1184 for i, window in increasing_windows(0, len(revs)):
1185 change = util.cachefunc(repo.changectx)
1186 nrevs = [rev for rev in revs[i:i + window] if want(rev)]
1185 nrevs = [rev for rev in revs[i:i + window] if want(rev)]
1187 for rev in sorted(nrevs):
1186 for rev in sorted(nrevs):
1188 fns = fncache.get(rev)
1187 fns = fncache.get(rev)
General Comments 0
You need to be logged in to leave comments. Login now