# HG changeset patch # User root@coffee.suse.com # Date 1126721660 18000 # Node ID 9d10f89b75a5ee7599f50277dbc4f9b66a3c0ee4 # Parent 4a6efec8b6988f94b461568eea8e66b1a4b813ed Fix hgit revtree bug with stop revision handling diff -r 4a6efec8b698 -r 9d10f89b75a5 contrib/hgit --- a/contrib/hgit Wed Sep 14 12:35:10 2005 -0500 +++ b/contrib/hgit Wed Sep 14 13:14:20 2005 -0500 @@ -256,13 +256,13 @@ while visit: n = visit.pop(0) if n in stop_sha1: - break + continue for p in repo.changelog.parents(n): if p not in reachable[i]: reachable[i][p] = 1 visit.append(p) if p in stop_sha1: - break + continue # walk the repository looking for commits that are in our # reachability graph