From: Rocco Rutte Date: Mon, 12 Mar 2007 08:13:40 +0000 (+0000) Subject: hg2git.py: Fix typo saving status to headsfile instead of statusfile X-Git-Url: http://crossforests.com/gitweb?a=commitdiff_plain;h=20b4ca920b8b9031818a961a88b5b3f6f75e07ee;p=python%2Ffast-export.git 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 --- 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))