##// END OF EJS Templates
doc: use an absolute path in sys.path to work around a python DLL loading bug...
Matt Harbison -
r50045:1b6e3815 stable
parent child Browse files
Show More
@@ -22,7 +22,7 b' except ImportError:'
22 # available. Relax C module requirements.
22 # available. Relax C module requirements.
23 os.environ['HGMODULEPOLICY'] = 'allow'
23 os.environ['HGMODULEPOLICY'] = 'allow'
24 # import from the live mercurial repo
24 # import from the live mercurial repo
25 sys.path.insert(0, "..")
25 sys.path.insert(0, os.path.abspath(".."))
26 from mercurial import demandimport
26 from mercurial import demandimport
27
27
28 demandimport.enable()
28 demandimport.enable()
General Comments 0
You need to be logged in to leave comments. Login now