Mercurial > public > mercurial-scm > hg
diff mercurial/revlog.py @ 3474:fd8f1110562c
fix errors spotted by pychecker
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Thu, 19 Oct 2006 16:55:34 +0200 |
parents | c6773b7ebee8 |
children | ceaa3fefc10c |
line wrap: on
line diff
--- a/mercurial/revlog.py Thu Oct 19 14:16:51 2006 +0200 +++ b/mercurial/revlog.py Thu Oct 19 16:55:34 2006 +0200 @@ -737,7 +737,7 @@ c = [] p = self.rev(node) for r in range(p + 1, self.count()): - for pr in self.parentrevs(n): + for pr in self.parentrevs(r): if pr == p: c.append(self.node(r)) return c