Mercurial > public > mercurial-scm > hg
comparison contrib/shrink-revlog.py @ 11298:3e46d76eaabf
shrink-repo: wrong variable name
author | Pradeepkumar Gayam <in3xes@gmail.com> |
---|---|
date | Sun, 06 Jun 2010 22:39:32 +0530 |
parents | 7b5d05e0fb1e |
children | 44c7dfc2f6a3 |
comparison
equal
deleted
inserted
replaced
11297:d320e70442a5 | 11298:3e46d76eaabf |
---|---|
90 if p2 != node.nullrev: | 90 if p2 != node.nullrev: |
91 children[p2].append(rev) | 91 children[p2].append(rev) |
92 finally: | 92 finally: |
93 ui.progress(_('reading'), None) | 93 ui.progress(_('reading'), None) |
94 | 94 |
95 root = list(roots) | 95 roots = list(roots) |
96 roots.sort() | 96 roots.sort() |
97 | 97 |
98 ui.status(_('sorting revs\n')) | 98 ui.status(_('sorting revs\n')) |
99 result = postorder(roots, children) | 99 result = postorder(roots, children) |
100 result.reverse() | 100 result.reverse() |