diff hgext/narrow/narrowrepo.py @ 49753:ff7134e03629

peer: have `repo.peer` take an optional `path` argument We are ready to start to actually set the value now.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 03 Dec 2022 00:16:07 +0100
parents 6000f5b25c9b
children 3a2df812e1c7
line wrap: on
line diff
--- a/hgext/narrow/narrowrepo.py	Sat Dec 03 00:13:50 2022 +0100
+++ b/hgext/narrow/narrowrepo.py	Sat Dec 03 00:16:07 2022 +0100
@@ -19,8 +19,8 @@
             dirstate = super(narrowrepository, self)._makedirstate()
             return narrowdirstate.wrapdirstate(self, dirstate)
 
-        def peer(self):
-            peer = super(narrowrepository, self).peer()
+        def peer(self, path=None):
+            peer = super(narrowrepository, self).peer(path=path)
             peer._caps.add(wireprototypes.NARROWCAP)
             peer._caps.add(wireprototypes.ELLIPSESCAP)
             return peer