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