##// END OF EJS Templates
doc: use an absolute path in sys.path...
av6 -
r50100:45e71954 stable
parent child Browse files
Show More
@@ -10,7 +10,7 b' 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()
General Comments 0
You need to be logged in to leave comments. Login now