From 20b4ca920b8b9031818a961a88b5b3f6f75e07ee Mon Sep 17 00:00:00 2001 From: Rocco Rutte Date: Mon, 12 Mar 2007 08:13:40 +0000 Subject: [PATCH] hg2git.py: Fix typo saving status to headsfile instead of statusfile This broke incremental imports as hg2git.sh wrapper overwrites headsfile with current values after the import is done. Signed-off-by: Rocco Rutte --- hg2git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hg2git.py b/hg2git.py index 1079684..8955adc 100644 --- a/hg2git.py +++ b/hg2git.py @@ -374,4 +374,4 @@ if __name__=='__main__': if options.marksfile==None: bail(parser,'--repo') sys.exit(hg2git(options.repourl,m,options.marksfile,options.headsfile, - options.headsfile,sob=options.sob)) + options.statusfile,sob=options.sob)) -- 2.11.4.GIT