Show More
@@ -2,14 +2,13 b'' | |||
|
2 | 2 | from __future__ import absolute_import, print_function |
|
3 | 3 | |
|
4 | 4 | import argparse |
|
5 | import json | |
|
6 | 5 | import os |
|
7 | 6 | import subprocess |
|
8 | 7 | import sys |
|
9 | 8 | |
|
10 | 9 | # Always load hg libraries from the hg we can find on $PATH. |
|
11 |
hglib = |
|
|
12 |
['hg', 'debuginstall', '-T |
|
|
10 | hglib = subprocess.check_output( | |
|
11 | ['hg', 'debuginstall', '-T', '{hgmodules}']) | |
|
13 | 12 | sys.path.insert(0, os.path.dirname(hglib)) |
|
14 | 13 | |
|
15 | 14 | from mercurial import util |
General Comments 0
You need to be logged in to leave comments.
Login now