D12622: doc: use an absolute path in sys.path

av6 (Anton Shestakov) phabricator at mercurial-scm.org
Tue May 10 07:29:01 UTC 2022


av6 created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.

REVISION SUMMARY
  The idea and rationale is similar to https://phab.mercurial-scm.org/D12599
  (landed as 1b6e381521c5 <https://phab.mercurial-scm.org/rHG1b6e381521c5288b9223443b42321220c0839233>).

REPOSITORY
  rHG Mercurial

BRANCH
  default

REVISION DETAIL
  https://phab.mercurial-scm.org/D12622

AFFECTED FILES
  doc/check-seclevel.py

CHANGE DETAILS

diff --git a/doc/check-seclevel.py b/doc/check-seclevel.py
--- a/doc/check-seclevel.py
+++ b/doc/check-seclevel.py
@@ -9,7 +9,7 @@
 
 # import from the live mercurial repo
 os.environ['HGMODULEPOLICY'] = 'py'
-sys.path.insert(0, "..")
+sys.path.insert(0, os.path.abspath(".."))
 from mercurial import demandimport
 
 demandimport.enable()



To: av6, #hg-reviewers
Cc: mercurial-patches, mercurial-devel


More information about the Mercurial-devel mailing list