revlog: change variable name to avoid reuse

This commit is contained in:
Matt Mackall 2011-03-26 17:12:02 -05:00
parent af6e59941f
commit f689cccd2c

View File

@ -1087,8 +1087,8 @@ class revlog(object):
fullrev = True
# build deltas
for d in xrange(len(revs) - 1):
a, b = revs[d], revs[d + 1]
for r in xrange(len(revs) - 1):
a, b = revs[r], revs[r + 1]
nb = self.node(b)
if infocollect is not None: