<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Nov 20, 2017 at 3:21 PM, Augie Fackler <span dir="ltr"><<a href="mailto:raf@durin42.com" target="_blank">raf@durin42.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"># HG changeset patch<br>
# User Augie Fackler <<a href="mailto:augie@google.com">augie@google.com</a>><br>
# Date 1509743249 14400<br>
#      Fri Nov 03 17:07:29 2017 -0400<br>
# Node ID 263c05286affa42590c28403bb8825<wbr>64b844b8cf<br>
# Parent  f6f8b7c8919a5aa1f711e3463f7dd9<wbr>afa6b734c5<br>
localrepo: specify optional callback parameter to pathauditor as a keyword<br></blockquote><div><br></div><div>Queued, thanks.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py<br>
--- a/mercurial/localrepo.py<br>
+++ b/mercurial/localrepo.py<br>
@@ -366,9 +366,10 @@ class localrepository(object):<br>
         self.origroot = path<br>
         # These auditor are not used by the vfs,<br>
         # only used when writing this comment: basectx.match<br>
-        self.auditor = pathutil.pathauditor(self.<wbr>root, self._checknested)<br>
-        self.nofsauditor = pathutil.pathauditor(self.<wbr>root, self._checknested,<br>
-                                                realfs=False, cached=True)<br>
+        self.auditor = pathutil.pathauditor(<br>
+            self.root, callback=self._checknested)<br>
+        self.nofsauditor = pathutil.pathauditor(<br>
+            self.root, callback=self._checknested, realfs=False, cached=True)<br>
         self.baseui = baseui<br>
         self.ui = baseui.copy()<br>
         self.ui.copy = baseui.copy # prevent copying repo configuration<br>
______________________________<wbr>_________________<br>
Mercurial-devel mailing list<br>
<a href="mailto:Mercurial-devel@mercurial-scm.org">Mercurial-devel@mercurial-scm.<wbr>org</a><br>
<a href="https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel" rel="noreferrer" target="_blank">https://www.mercurial-scm.org/<wbr>mailman/listinfo/mercurial-<wbr>devel</a><br>
</blockquote></div><br></div></div>