# HG changeset patch # User Gregory Szorc # Date 1494902231 25200 # Node ID d7efaf6275a73ace512ee56313eedfc537c280e9 # Parent 7e07d583606352bdac8bddaead4063842d48db87 perf: always pass node to revlog.revision() I removed this in 73c3e226d2fc thinking it wasn't necessary. In fact, we need to always pass a node so the code is compatible with revisions before d7d64b89a65c. The new code uses a variable to avoid check-style complaining about "r.revision(r.node(" patterns. diff -r 7e07d5836063 -r d7efaf6275a7 contrib/perf.py --- a/contrib/perf.py Mon May 15 18:55:58 2017 -0700 +++ b/contrib/perf.py Mon May 15 19:37:11 2017 -0700 @@ -865,7 +865,9 @@ dist = -1 * dist for x in xrange(beginrev, endrev, dist): - rl.revision(x) + # Old revisions don't support passing int. + n = rl.node(x) + rl.revision(n) timer, fm = gettimer(ui, opts) timer(d)