diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-04-03 12:28:41 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-04-03 12:28:41 -0700 |
commit | 4de113cdf55631ef1f8bf34658fb647509520e8a (patch) | |
tree | c26cdceca94648fc281bb0259bd44faa3c983247 /contrib/hg-to-git/hg-to-git.py | |
parent | 16b8a3e4b94dc7f6e05b624eae3cf1eed7b358a5 (diff) | |
parent | 44211e8c2ea48e1149cb36a02bd54f2d21c207f4 (diff) | |
download | git-4de113cdf55631ef1f8bf34658fb647509520e8a.tar.gz |
Merge branch 'rb/maint-python-path'
* rb/maint-python-path:
Correct references to /usr/bin/python which does not exist on FreeBSD
Diffstat (limited to 'contrib/hg-to-git/hg-to-git.py')
-rwxr-xr-x | contrib/hg-to-git/hg-to-git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hg-to-git/hg-to-git.py b/contrib/hg-to-git/hg-to-git.py index 854cd94ba5..046cb2b268 100755 --- a/contrib/hg-to-git/hg-to-git.py +++ b/contrib/hg-to-git/hg-to-git.py @@ -1,4 +1,4 @@ -#! /usr/bin/python +#!/usr/bin/env python """ hg-to-git.py - A Mercurial to GIT converter |