# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1605863055 -19800 # Node ID 1441f4d570834d521ada1b01d8e9f41e0f8aca63 # Parent aba4f2c97e742d78e4735d3ec3becf0b45658d52 dispatch: pass root path in ui.readconfig() as root of main repo Since we are reading main (shared-source) repository config options, we should pass root as that repository root only. Differential Revision: https://phab.mercurial-scm.org/D9359 diff -r aba4f2c97e74 -r 1441f4d57083 mercurial/dispatch.py --- a/mercurial/dispatch.py Fri Oct 16 19:03:09 2020 +0530 +++ b/mercurial/dispatch.py Fri Nov 20 14:34:15 2020 +0530 @@ -919,7 +919,8 @@ return hgvfs = vfs.vfs(os.path.join(path, b".hg")) sharedvfs = localrepo._getsharedvfs(hgvfs, requirements) - ui.readconfig(sharedvfs.join(b"hgrc"), path) + root = sharedvfs.base + ui.readconfig(sharedvfs.join(b"hgrc"), root) except IOError: pass