equal
deleted
inserted
replaced
7 import os |
7 import os |
8 import sys |
8 import sys |
9 |
9 |
10 # import from the live mercurial repo |
10 # import from the live mercurial repo |
11 os.environ['HGMODULEPOLICY'] = 'py' |
11 os.environ['HGMODULEPOLICY'] = 'py' |
12 sys.path.insert(0, "..") |
12 sys.path.insert(0, os.path.abspath("..")) |
13 from mercurial import demandimport |
13 from mercurial import demandimport |
14 |
14 |
15 demandimport.enable() |
15 demandimport.enable() |
16 from mercurial import ( |
16 from mercurial import ( |
17 commands, |
17 commands, |