##// END OF EJS Templates
localrepo: pass arbitrary kwargs from `repo.pull` to `exchange.pull`...
Pierre-Yves David -
r22642:45e50d85 default
parent child Browse files
Show More
@@ -1574,8 +1574,8 b' class localrepository(object):'
1574
1574
1575 return r
1575 return r
1576
1576
1577 def pull(self, remote, heads=None, force=False):
1577 def pull(self, remote, heads=None, force=False, **kwargs):
1578 return exchange.pull (self, remote, heads, force)
1578 return exchange.pull(self, remote, heads, force, **kwargs)
1579
1579
1580 def checkpush(self, pushop):
1580 def checkpush(self, pushop):
1581 """Extensions can override this function if additional checks have
1581 """Extensions can override this function if additional checks have
General Comments 0
You need to be logged in to leave comments. Login now