From 80f028a16c51bef1284984941e8e248b42cd55d7 Mon Sep 17 00:00:00 2001 From: Rocco Rutte Date: Mon, 12 Mar 2007 08:12:08 +0000 Subject: [PATCH] hg2git.py: Display our max revision as progress, not tip Displaying tip doesn't make sense when we have some max given with -m/--max. Signed-off-by: Rocco Rutte --- hg2git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hg2git.py b/hg2git.py index 9d832c3..1079684 100644 --- a/hg2git.py +++ b/hg2git.py @@ -330,7 +330,7 @@ def hg2git(repourl,m,marksfile,headsfile,tipfile,authors={},sob=False): c=0 last={} for rev in range(min,max): - c=export_commit(ui,repo,rev,marks_cache,heads_cache,last,tip,c,authors,sob) + c=export_commit(ui,repo,rev,marks_cache,heads_cache,last,max,c,authors,sob) c=export_tags(ui,repo,marks_cache,min,max,c,authors) -- 2.11.4.GIT