Show More
@@ -107,6 +107,11 b" if os.path.isdir('.hg'):" | |||
|
107 | 107 | env = {'PYTHONPATH': os.pathsep.join(pypath), |
|
108 | 108 | 'HGRCPATH': '', |
|
109 | 109 | 'LANGUAGE': 'C'} |
|
110 | if 'SystemRoot' in os.environ: | |
|
111 | # Copy SystemRoot into the custom environment for Python 2.6 | |
|
112 | # under Windows. Otherwise, the subprocess will fail with | |
|
113 | # error 0xc0150004. See: http://bugs.python.org/issue3440 | |
|
114 | env['SystemRoot'] = os.environ['SystemRoot'] | |
|
110 | 115 | cmd = [sys.executable, 'hg', 'id', '-i', '-t'] |
|
111 | 116 | |
|
112 | 117 | p = subprocess.Popen(cmd, stdout=subprocess.PIPE, |
General Comments 0
You need to be logged in to leave comments.
Login now