On Sun, Nov 11, 2012 at 1:48 PM, Ramkumar Ramachandra <artagnon@xxxxxxxxx> wrote: > Felipe Contreras wrote: >> On Sun, Nov 11, 2012 at 11:32 AM, Ramkumar Ramachandra >> <artagnon@xxxxxxxxx> wrote: >>> I'm experiencing test failures in contrib/remote-helpers. >> >> Which are your versions of hg, and bzr? > > Mercurial Distributed SCM (version 1.9.1) I can reproduce the issue, this fixes it for versions up to 1.8: --- a/contrib/remote-helpers/git-remote-hg +++ b/contrib/remote-helpers/git-remote-hg @@ -294,7 +294,7 @@ def export_ref(repo, name, kind, head): if tip and tip == head.rev(): # nothing to do return - revs = repo.revs('%u:%u' % (tip, head)) + revs = xrange(tip, head.rev() + 1) count = 0 revs = [rev for rev in revs if not marks.is_marked(rev)] I don't think it makes sense to aim anything lower. -- Felipe Contreras -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html