From: Rocco Rutte Date: Fri, 19 Sep 2008 06:01:53 +0000 (+0200) Subject: hg-fast-export: Catch up with mercurial crew API changes X-Git-Url: http://crossforests.com/gitweb?a=commitdiff_plain;h=02bc08886f3e2d07ae18e5bceda57f8b1a6694e8;p=python%2Ffast-export.git hg-fast-export: Catch up with mercurial crew API changes Signed-off-by: Rocco Rutte --- 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