##// END OF EJS Templates
perfmoonwalk: make work with filtered repo...
Martin von Zweigbergk -
r38801:a4d847ce default
parent child Browse files
Show More
@@ -923,7 +923,7 b' def perfmoonwalk(ui, repo, **opts):'
923 """
923 """
924 timer, fm = gettimer(ui, opts)
924 timer, fm = gettimer(ui, opts)
925 def moonwalk():
925 def moonwalk():
926 for i in xrange(len(repo), -1, -1):
926 for i in repo.changelog.revs(start=(len(repo) - 1), stop=-1):
927 ctx = repo[i]
927 ctx = repo[i]
928 ctx.branch() # read changelog data (in addition to the index)
928 ctx.branch() # read changelog data (in addition to the index)
929 timer(moonwalk)
929 timer(moonwalk)
General Comments 0
You need to be logged in to leave comments. Login now