From 02bc08886f3e2d07ae18e5bceda57f8b1a6694e8 Mon Sep 17 00:00:00 2001 From: Rocco Rutte Date: Fri, 19 Sep 2008 08:01:53 +0200 Subject: [PATCH] hg-fast-export: Catch up with mercurial crew API changes Signed-off-by: Rocco Rutte --- hg-fast-export.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hg-fast-export.py b/hg-fast-export.py index d010d4d..ca3ab69 100755 --- a/hg-fast-export.py +++ b/hg-fast-export.py @@ -330,7 +330,10 @@ def hg2git(repourl,m,marksfile,headsfile,tipfile,authors={},sob=False,force=Fals if not verify_heads(ui,repo,heads_cache,force): return 1 - tip=repo.changelog.count() + try: + tip=repo.changelog.count() + except AttributeError: + tip=len(repo) min=int(state_cache.get('tip',0)) max=_max -- 2.11.4.GIT