Sync with 1.8.1.1
[gitweb.git] / contrib / hg-to-git / hg-to-git.py
index 854cd94ba55e498a3ff6c26be3dbe5191faa19dc..232625a7b72aef88ef9cc0285eb7208ce38a2138 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 """ hg-to-git.py - A Mercurial to GIT converter
 
 import tempfile, pickle, getopt
 import re
 
+if sys.hexversion < 0x02030000:
+   # The behavior of the pickle module changed significantly in 2.3
+   sys.stderr.write("hg-to-git.py: requires Python 2.3 or later.\n")
+   sys.exit(1)
+
 # Maps hg version -> git version
 hgvers = {}
 # List of children for each hg revision