hgext/phabricator.py
changeset 45502 c7fe0dfb5312
parent 45485 b71858b42963
child 45772 294aab57a5f3
--- a/hgext/phabricator.py	Thu Sep 17 23:09:47 2020 -0700
+++ b/hgext/phabricator.py	Thu Sep 17 22:45:51 2020 -0700
@@ -167,7 +167,7 @@
 
 
 @eh.wrapfunction(localrepo, "loadhgrc")
-def _loadhgrc(orig, ui, wdirvfs, hgvfs, requirements, **opts):
+def _loadhgrc(orig, ui, wdirvfs, hgvfs, requirements, *args, **opts):
     """Load ``.arcconfig`` content into a ui instance on repository open.
     """
     result = False
@@ -202,7 +202,7 @@
         ui.applyconfig(cfg, source=wdirvfs.join(b".arcconfig"))
 
     return (
-        orig(ui, wdirvfs, hgvfs, requirements, **opts) or result
+        orig(ui, wdirvfs, hgvfs, requirements, *args, **opts) or result
     )  # Load .hg/hgrc