hgext/zeroconf/__init__.py
branchstable
changeset 44163 eecc005229ff
parent 43554 9f70512ae2cf
child 46819 d4ba4d51f85f
--- a/hgext/zeroconf/__init__.py	Tue Feb 04 12:07:42 2020 +0100
+++ b/hgext/zeroconf/__init__.py	Tue Feb 04 12:07:37 2020 +0100
@@ -35,6 +35,7 @@
     extensions,
     hg,
     pycompat,
+    rcutil,
     ui as uimod,
 )
 from mercurial.hgweb import server as servermod
@@ -144,7 +145,8 @@
         prefix = app.ui.config(b"web", b"prefix", b"").strip(b'/') + b'/'
         for repo, path in repos:
             u = app.ui.copy()
-            u.readconfig(os.path.join(path, b'.hg', b'hgrc'))
+            if rcutil.use_repo_hgrc():
+                u.readconfig(os.path.join(path, b'.hg', b'hgrc'))
             name = os.path.basename(repo)
             path = (prefix + repo).strip(b'/')
             desc = u.config(b'web', b'description')